diff options
| author | offl <offl@users.noreply.github.com> | 2021-05-29 20:47:46 +0300 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-03-10 23:13:25 +0100 |
| commit | cec9718d22c2281f2edfe58e7b3090e947de7763 (patch) | |
| tree | 3b021f8b05c18f138aa1d5794880383aa4f30c36 /src/server/scripts/EasternKingdoms/ScarletEnclave | |
| parent | 2f0623789c79d1dc715f8a0c77b60913bd21bd10 (diff) | |
Scripts/Spells: Add comments with id & name of spells part 2
(cherry picked from commit 0e804c95ac1e2ae048682fd3b52a02e8f6a88c82)
Diffstat (limited to 'src/server/scripts/EasternKingdoms/ScarletEnclave')
| -rw-r--r-- | src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp index e81c5d98f6a..7939eec00a2 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp @@ -1084,6 +1084,7 @@ enum GiftOfTheHarvester SPELL_GHOST_TRANSFORM = 52505 }; +// 52479 - Gift of the Harvester class spell_gift_of_the_harvester : public SpellScript { PrepareSpellScript(spell_gift_of_the_harvester); @@ -1091,10 +1092,10 @@ class spell_gift_of_the_harvester : public SpellScript bool Validate(SpellInfo const* /*spell*/) override { return ValidateSpellInfo( - { - SPELL_GHOUL_TRANFORM, - SPELL_GHOST_TRANSFORM - }); + { + SPELL_GHOUL_TRANFORM, + SPELL_GHOST_TRANSFORM + }); } void HandleScriptEffect(SpellEffIndex /*effIndex*/) |
