From d92de7667738a2ed03113837e739b472d50c3e2d Mon Sep 17 00:00:00 2001 From: Keader Date: Tue, 26 Dec 2017 11:59:20 -0300 Subject: Core/AI: Changing uint64 to ObjectGuid in GameObjectAI --- src/server/game/AI/CoreAI/GameObjectAI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/server/game/AI/CoreAI/GameObjectAI.h b/src/server/game/AI/CoreAI/GameObjectAI.h index 80ab11d6792..ba1f54b4b48 100644 --- a/src/server/game/AI/CoreAI/GameObjectAI.h +++ b/src/server/game/AI/CoreAI/GameObjectAI.h @@ -42,8 +42,8 @@ class TC_GAME_API GameObjectAI // Pass parameters between AI virtual void DoAction(int32 /*param = 0 */) { } - virtual void SetGUID(uint64 /*guid*/, int32 /*id = 0 */) { } - virtual uint64 GetGUID(int32 /*id = 0 */) const { return 0; } + virtual void SetGUID(ObjectGuid /*guid*/, int32 /*id = 0 */) { } + virtual ObjectGuid GetGUID(int32 /*id = 0 */) const { return ObjectGuid::Empty; } static int32 Permissible(GameObject const* go); -- cgit v1.2.3