diff options
author | SnapperRy <snapperryen@gmail.com> | 2016-09-14 20:27:32 +0200 |
---|---|---|
committer | SnapperRy <snapperryen@gmail.com> | 2016-09-14 20:28:02 +0200 |
commit | 6586885bcaf062c5f0fd6d6c7652b93c08e7c20c (patch) | |
tree | 9693805bd0cd49112a24365037545fa04582314b /src | |
parent | 08d88238a66a7918573e843325da4aa0c2bd71ce (diff) |
Core/SmartAI: do not target player's group for SMART_ACTION_CALL_AREAEXPLOREDOREVENTHAPPENS.
SMART_TARGET_INVOKER_PARTY or SMART_ACTION_CALL_GROUPEVENTHAPPENS should instead be used to achieve this functionality.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/AI/SmartScripts/SmartScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/AI/SmartScripts/SmartScript.cpp b/src/server/game/AI/SmartScripts/SmartScript.cpp index 24f920f8c42..56e943a64c9 100644 --- a/src/server/game/AI/SmartScripts/SmartScript.cpp +++ b/src/server/game/AI/SmartScripts/SmartScript.cpp @@ -468,7 +468,7 @@ void SmartScript::ProcessAction(SmartScriptHolder& e, Unit* unit, uint32 var0, u if (IsPlayer(*itr)) { - (*itr)->ToPlayer()->GroupEventHappens(e.action.quest.quest, me); + (*itr)->ToPlayer()->AreaExploredOrEventHappens(e.action.quest.quest); TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_CALL_AREAEXPLOREDOREVENTHAPPENS: Player guidLow %u credited quest %u", (*itr)->GetGUID().GetCounter(), e.action.quest.quest); |