Core/SAI: implement SMART_ACTION_ATTACK_STOP

Unlike SMART_ACTION_AUTO_ATTACK, this action is actually stopping the entire attack procedure, rather than just hack-disabling auto-attacks. Keep in mind that this action requires a passive react state to prevent a immediate AttackStart ai reaction
This commit is contained in:
Ovahlord
2020-06-14 22:51:42 +02:00
parent 12cf7bc099
commit 152ea60116
3 changed files with 9 additions and 0 deletions

View File

@@ -1164,6 +1164,13 @@ void SmartScript::ProcessAction(SmartScriptHolder& e, Unit* unit, uint32 var0, u
}
break;
}
case SMART_ACTION_ATTACK_STOP:
{
for (WorldObject* target : targets)
if (Unit* unitTarget = target->ToUnit())
unitTarget->AttackStop();
break;
}
case SMART_ACTION_MOVE_OFFSET:
{
for (WorldObject* target : targets)