aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Spells/SpellScript.cpp
diff options
context:
space:
mode:
authorMatan Shukry <matanshukry@gmail.com>2021-02-13 12:59:43 +0100
committerShauren <shauren.trinity@gmail.com>2021-02-13 14:08:16 +0100
commit7159de62b6a863de39fffc672ac79832a3bbd323 (patch)
treef6f498918166797b2867bf15d92fb7b5d8bb4809 /src/server/game/Spells/SpellScript.cpp
parentc261b16a3259a1cb747479e9cbe3ae222771fbcf (diff)
Scripts/Spells: Remove const from AuraEffect argument for AuraEffectProcFn
Diffstat (limited to 'src/server/game/Spells/SpellScript.cpp')
-rw-r--r--src/server/game/Spells/SpellScript.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellScript.cpp b/src/server/game/Spells/SpellScript.cpp
index 638f69d8721..de737b0d5d0 100644
--- a/src/server/game/Spells/SpellScript.cpp
+++ b/src/server/game/Spells/SpellScript.cpp
@@ -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);
}