Core/SAI: don't allow to start a new SAI actionlist while the entity is already running one. (#23421)

(cherry picked from commit 2b1cde2560)
This commit is contained in:
Wyrserth
2019-06-16 20:00:57 +02:00
committed by Shauren
parent ae43820ca0
commit e846d4c3ef

View File

@@ -4143,6 +4143,10 @@ void SmartScript::SetTimedActionList(SmartScriptHolder& e, uint32 entry, Unit* i
return;
}
// Do NOT allow to start a new actionlist if a previous one is already running. We need to always finish the current actionlist
if (!mTimedActionList.empty())
return;
mTimedActionList.clear();
mTimedActionList = sSmartScriptMgr->GetScript(entry, SMART_SCRIPT_TYPE_TIMED_ACTIONLIST);
if (mTimedActionList.empty())