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

This commit is contained in:
Wyrserth
2019-06-16 20:00:57 +02:00
committed by Ovahlord
parent d0d7c1d51b
commit d339fdc354

View File

@@ -3861,6 +3861,10 @@ void SmartScript::SetScript9(SmartScriptHolder& e, uint32 entry)
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())