Scripts/Spells: Remove const from AuraEffect argument for AuraEffectProcFn

This commit is contained in:
Matan Shukry
2021-02-13 12:59:43 +01:00
committed by Shauren
parent c261b16a32
commit 7159de62b6
36 changed files with 148 additions and 148 deletions

View File

@@ -973,7 +973,7 @@ AuraScript::EffectProcHandler::EffectProcHandler(AuraEffectProcFnType effectHand
_EffectHandlerScript = effectHandlerScript;
}
void AuraScript::EffectProcHandler::Call(AuraScript* auraScript, AuraEffect const* aurEff, ProcEventInfo& eventInfo)
void AuraScript::EffectProcHandler::Call(AuraScript* auraScript, AuraEffect* aurEff, ProcEventInfo& eventInfo)
{
(auraScript->*_EffectHandlerScript)(aurEff, eventInfo);
}