mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 10:00:28 +00:00
refactor(Core): AddEventAtOffset (#23140)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user