Skip to content

Commit

Permalink
Correct CallForHelp for Blood Furnance trash mobs based on wotlk clas…
Browse files Browse the repository at this point in the history
…sic tests
  • Loading branch information
miraco committed Apr 3, 2024
1 parent 56731fe commit 6458ca9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Updates/0392_bf_aggro_range.sql
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;

2 comments on commit 6458ca9

@jimmyartis
Copy link

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?

@miraco
Copy link
Collaborator Author

@miraco miraco commented on 6458ca9 Apr 4, 2024

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

Please sign in to comment.