diff options
author | tobmaps <spambot42@yandex.ru> | 2011-05-12 17:58:57 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-05-12 17:58:57 +0700 |
commit | 8001fd0ba7cad6b318f3586894e44ff12e6e2e97 (patch) | |
tree | 04f4f2e653f93432ac1c77b890da10b0a6d10742 | |
parent | 840cd6335f2c5e2e9d6e7e4472b04cff9d928b5b (diff) |
Core/Spells: Fix stacking rules for Focus Magic
-rw-r--r-- | sql/base/world_database.sql | 2 | ||||
-rw-r--r-- | sql/updates/world/2011_05_12_07_world_spell_group.sql | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 9e254b3cb31..2f5c0e4d49c 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -17685,7 +17685,6 @@ INSERT INTO `spell_group` (`id`, `spell_id`) VALUES (1041,48506), -- Earth and Moon (1042,1490), -- Curse of the Elements -- Increased Spell Power Buff -(1044,54646), -- Focus Magic (1045,52109), -- Flametongue Totem (1046,57658), -- Totem of Wrath (1046,57660), -- Totem of Wrath @@ -17781,7 +17780,6 @@ INSERT INTO `spell_group` (`id`, `spell_id`) VALUES (1043,-1041), (1043,-1042), -- Increased Spell Power Buff -(1048,-1044), (1048,-1045), (1048,-1046), (1048,-1047), diff --git a/sql/updates/world/2011_05_12_07_world_spell_group.sql b/sql/updates/world/2011_05_12_07_world_spell_group.sql new file mode 100644 index 00000000000..c7a8a764c85 --- /dev/null +++ b/sql/updates/world/2011_05_12_07_world_spell_group.sql @@ -0,0 +1 @@ +DELETE FROM `spell_group` WHERE `id` = 1044 OR `spell_id` = -1044; |