diff options
author | Treeston <treeston.mmoc@gmail.com> | 2018-08-22 21:51:16 +0200 |
---|---|---|
committer | Treeston <treeston.mmoc@gmail.com> | 2018-08-22 21:51:16 +0200 |
commit | c00a2efb21356eb4105cb7db9112c708762d9191 (patch) | |
tree | 806da4a07097e293fe6bace2165df41f81fc4b19 /src/server/game/AI/CreatureAI.cpp | |
parent | dd54c8012321ecd40fc82f04cf0c98b201bc580e (diff) |
Core/AI: Remove unnecessary parameter from DoZoneInCombat after eb1972f
Diffstat (limited to 'src/server/game/AI/CreatureAI.cpp')
-rw-r--r-- | src/server/game/AI/CreatureAI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/AI/CreatureAI.cpp b/src/server/game/AI/CreatureAI.cpp index 30bdd7b5c9b..7b6615f36f1 100644 --- a/src/server/game/AI/CreatureAI.cpp +++ b/src/server/game/AI/CreatureAI.cpp @@ -58,7 +58,7 @@ void CreatureAI::Talk(uint8 id, WorldObject const* whisperTarget /*= nullptr*/) sCreatureTextMgr->SendChat(me, id, whisperTarget); } -void CreatureAI::DoZoneInCombat(Creature* creature /*= nullptr*/, float maxRangeToNearestTarget /* = 250.0f*/) +void CreatureAI::DoZoneInCombat(Creature* creature /*= nullptr*/) { if (!creature) creature = me; |