mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-11 04:28:41 +01:00
Core/SpellScript: allow optional parameters to be passed to FinishCast
followup of 50a3ce5703
This commit is contained in:
@@ -624,9 +624,9 @@ SpellInfo const* SpellScript::GetTriggeringSpell()
|
||||
return m_spell->m_triggeredByAuraSpell;
|
||||
}
|
||||
|
||||
void SpellScript::FinishCast(SpellCastResult result)
|
||||
void SpellScript::FinishCast(SpellCastResult result, uint32* param1 /*= nullptr*/, uint32* param2 /*= nullptr*/)
|
||||
{
|
||||
m_spell->SendCastResult(result);
|
||||
m_spell->SendCastResult(result, param1, param2);
|
||||
m_spell->finish(result == SPELL_CAST_OK);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user