diff options
author | Shauren <shauren.trinity@gmail.com> | 2021-08-28 19:51:29 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-08-28 19:51:29 +0200 |
commit | 3dd75a49b190098010803014072c0c8bee2996bd (patch) | |
tree | c0af28ecb5fdb4cf7caeb17c3720020e7e1d92c9 /src/server/game/Spells/SpellScript.h | |
parent | bc2c76a5b8b4a6e5c1d6e65d367c700e4ef1cbf2 (diff) |
Core/Spells: Removed SpellEffIndex effIndex argument from spell effect handlers, it was commented out in almost every handler
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 9457957b539..e4c3cca9387 100644 --- a/src/server/game/Spells/SpellScript.h +++ b/src/server/game/Spells/SpellScript.h @@ -498,7 +498,7 @@ class TC_GAME_API SpellScript : public _SpellScript Item* GetCastItem() const; // Creates item. Calls Spell::DoCreateItem method. - void CreateItem(uint32 effIndex, uint32 itemId, ItemContext context); + void CreateItem(uint32 itemId, ItemContext context); // Returns SpellInfo from the spell that triggered the current one SpellInfo const* GetTriggeringSpell() const; |