From 00b547146d5486cb82b30199b3c145c8b5f2f3bc Mon Sep 17 00:00:00 2001 From: ariel- Date: Sun, 26 Mar 2017 13:40:32 -0300 Subject: [PATCH] Core/Gameobject: remove virtual from GetScriptId, it's not overriden --- src/server/game/Entities/GameObject/GameObject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Entities/GameObject/GameObject.h b/src/server/game/Entities/GameObject/GameObject.h index 26982066af9..d93cc5a2644 100644 --- a/src/server/game/Entities/GameObject/GameObject.h +++ b/src/server/game/Entities/GameObject/GameObject.h @@ -873,7 +873,7 @@ class TC_GAME_API GameObject : public WorldObject, public GridObject void EventInform(uint32 eventId, WorldObject* invoker = NULL); - virtual uint32 GetScriptId() const; + uint32 GetScriptId() const; GameObjectAI* AI() const { return m_AI; } std::string GetAIName() const;