-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove nonexisting spell=2 from creature_template_spells
cmangos/mangos-tbc#613 Linked to cmangos/issues#3416
- Loading branch information
Showing
1 changed file
with
15 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,15 @@ | ||
-- https://github.com/cmangos/mangos-tbc/pull/613 | ||
-- https://github.com/cmangos/issues/issues/3416#issuecomment-1575278870 | ||
UPDATE creature_template_spells SET spell1 = 0 WHERE spell1 = 2; -- 574 | ||
UPDATE creature_template_spells SET spell2 = 0 WHERE spell2 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell3 = 0 WHERE spell3 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell4 = 0 WHERE spell4 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell5 = 0 WHERE spell5 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell6 = 0 WHERE spell6 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell7 = 0 WHERE spell7 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell8 = 0 WHERE spell8 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell9 = 0 WHERE spell9 = 2; -- 0 | ||
UPDATE creature_template_spells SET spell10 = 0 WHERE spell10 = 2; -- 0 | ||
|
||
DELETE FROM `creature_template_spells` WHERE `spell1` = 0 AND `spell2` = 0 AND `spell3` = 0 AND `spell4` = 0 AND `spell5` = 0 AND `spell6` = 0 AND `spell7` = 0 AND `spell8` = 0 AND `spell9` = 0 AND `spell10` = 0; -- 56 | ||
|