diff options
author | Shauren <shauren.trinity@gmail.com> | 2021-10-10 19:00:02 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-10-10 19:00:02 +0200 |
commit | 2965d201ab5580a7c71279701b8523064a159077 (patch) | |
tree | 3f092594d74afb266238668e9db7dc3f8316af82 /src/server/game/Spells/SpellScript.h | |
parent | d03c7d030c5c34dcd4729152cd54d8c5ac949858 (diff) |
Core/Spells: Changed Spell::SendCastResult arguments to signed ints to match packet structure
Diffstat (limited to 'src/server/game/Spells/SpellScript.h')
-rw-r--r-- | src/server/game/Spells/SpellScript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellScript.h b/src/server/game/Spells/SpellScript.h index b217764b552..599518e9214 100644 --- a/src/server/game/Spells/SpellScript.h +++ b/src/server/game/Spells/SpellScript.h @@ -504,7 +504,7 @@ class TC_GAME_API SpellScript : public _SpellScript SpellInfo const* GetTriggeringSpell() const; // finishes spellcast prematurely with selected error message - void FinishCast(SpellCastResult result, uint32* param1 = nullptr, uint32* param2 = nullptr); + void FinishCast(SpellCastResult result, int32* param1 = nullptr, int32* param2 = nullptr); void SetCustomCastResultMessage(SpellCustomErrors result); |