refactor(Core): AddEventAtOffset (#23140)
This commit is contained in:
parent
762f5a7158
commit
058f7acac6
47 changed files with 141 additions and 139 deletions
|
|
@ -193,7 +193,7 @@ struct npc_pet_gen_argent_pony_bridle : public ScriptedAI
|
|||
duration = cooldown;
|
||||
aura = SPELL_AURA_POSTMAN_S + i;
|
||||
_state = argentPonyService[TEAM_ALLIANCE][i];
|
||||
me->ToTempSummon()->UnSummon(duration);
|
||||
me->ToTempSummon()->UnSummon(Milliseconds(duration));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
@ -204,7 +204,7 @@ struct npc_pet_gen_argent_pony_bridle : public ScriptedAI
|
|||
duration = cooldown * IN_MILLISECONDS;
|
||||
aura = SPELL_AURA_BANK_G + i;
|
||||
_state = argentPonyService[TEAM_HORDE][i];
|
||||
me->ToTempSummon()->UnSummon(duration);
|
||||
me->ToTempSummon()->UnSummon(Milliseconds(duration));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue