-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct CallForHelp for Blood Furnance trash mobs based on wotlk clas…
…sic tests
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
-- Correct CallForHelp for Blood Furnance trash mobs based on wotlk classic tests | ||
-- Shadowmoon Warlock | ||
UPDATE creature_template SET CallForHelp = '6' WHERE entry IN (17371, 18619); | ||
-- Shadowmoon Adept | ||
UPDATE creature_template SET CallForHelp = '6' WHERE entry IN (17397, 18615); | ||
-- Shadowmoon Technician | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17414, 18618); | ||
-- Shadowmoon Summoner | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17395, 18617); | ||
-- Laughing Skull Enforcer | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17370, 18608); | ||
-- Nascent Fel Orc | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17398, 18612); | ||
-- Fel orc Neophyte | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17429, 18603); | ||
-- Laughing Skull Legionnaire | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17626, 18609); | ||
-- Laughing Skull Warden | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17624, 18611); | ||
-- Hellfire Familiar | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (19016, 21646); | ||
-- Felguard Brute | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (18894, 21645); | ||
-- Laughing Skull Rogue | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17491, 18610); | ||
-- Felguard Annihilator | ||
UPDATE creature_template SET CallForHelp = '8' WHERE entry IN (17400, 18604); | ||
-- Hellfire Imp | ||
UPDATE creature_template SET CallForHelp = '6' WHERE entry IN (17477, 18606; |
6458ca9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a ) at the end of line 29?
6458ca9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes indeed, should be fixed, ty