[Code] Add IsOfClientBot() virtual method. (#2845)

This commit is contained in:
Aeadoin
2023-02-06 22:30:49 -05:00
committed by GitHub
parent b0d1dc5f04
commit 9e3b363d4a
4 changed files with 6 additions and 2 deletions
+2 -1
View File
@@ -277,7 +277,8 @@ public:
void KeyRingAdd(uint32 item_id);
bool KeyRingCheck(uint32 item_id);
void KeyRingList();
virtual bool IsClient() const { return true; }
bool IsClient() const override { return true; }
bool IsOfClientBot() const override { return true; }
bool IsOfClientBotMerc() const override { return true; }
void CompleteConnect();
bool TryStacking(EQ::ItemInstance* item, uint8 type = ItemPacketTrade, bool try_worn = true, bool try_cursor = true);