aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeader <keader.android@gmail.com>2017-12-26 11:59:20 -0300
committerKeader <keader.android@gmail.com>2017-12-26 11:59:20 -0300
commitd92de7667738a2ed03113837e739b472d50c3e2d (patch)
tree2f65f084067ad5f484c73912350850c7602ccb27 /src
parentf0614b57a59a8525a6634e1465a83ef8fa27839e (diff)
Core/AI: Changing uint64 to ObjectGuid in GameObjectAI
Diffstat (limited to 'src')
-rw-r--r--src/server/game/AI/CoreAI/GameObjectAI.h4
1 files changed, 2 insertions, 2 deletions
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);