diff options
author | Wyrserth <wyrserth@protonmail.com> | 2019-06-27 21:03:29 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-13 00:42:18 +0100 |
commit | 5c5bcba65a10d13c9328ea96e90db8eb7ce50988 (patch) | |
tree | ddbb887c0511124bb630e3b9fc7c14e697ecc32a | |
parent | c637260a37271a9ed2b19d44a62210e833010bde (diff) |
Script/ZulGurub: rewrite High Priest Thekal's encounter script (#23429)
(cherry picked from commit 365e2f191efa5576c0045a9ebdffe63e1ea3bac7)
-rw-r--r-- | sql/updates/world/master/2021_12_12_11_world_2019_06_27_03_world.sql | 7 | ||||
-rw-r--r-- | src/server/game/Spells/SpellInfo.cpp | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sql/updates/world/master/2021_12_12_11_world_2019_06_27_03_world.sql b/sql/updates/world/master/2021_12_12_11_world_2019_06_27_03_world.sql new file mode 100644 index 00000000000..61d250858d0 --- /dev/null +++ b/sql/updates/world/master/2021_12_12_11_world_2019_06_27_03_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `creature_text` WHERE `CreatureID` IN (14509, 11347, 11348) AND `GroupId`=2; +DELETE FROM `creature_text` WHERE `CreatureID`=14509 AND `GroupId`=3; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(14509, 2, 0, "%s dies.", 16, 0, 100, 0, 0, 0, 12195, 0, "High Priest Thekal"), +(14509, 3, 0, "%s goes into a frenzy!", 16, 0, 100, 0, 0, 0, 1191, 0, "High Priest Thekal"), +(11347, 2, 0, "%s dies.", 16, 0, 100, 0, 0, 0, 10453, 0, "Zealoth Lor'khan"), +(11348, 2, 0, "%s dies.", 16, 0, 100, 0, 0, 0, 12195, 0, "Zealot Zath"); diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index d18e56e703f..4b1db88eb4f 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -2001,7 +2001,6 @@ SpellCastResult SpellInfo::CheckLocation(uint32 map_id, uint32 zone_id, uint32 a case 2584: // Waiting to Resurrect case 22011: // Spirit Heal Channel case 22012: // Spirit Heal - case 24171: // Resurrection Impact Visual case 42792: // Recently Dropped Flag case 43681: // Inactive case 44535: // Spirit Heal (mana) |