aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobmaps <spambot42@yandex.ru>2011-05-12 17:44:40 +0700
committertobmaps <spambot42@yandex.ru>2011-05-12 17:44:40 +0700
commit840cd6335f2c5e2e9d6e7e4472b04cff9d928b5b (patch)
tree999026eba2bfcb06ac73097aa66e629a587080a0
parentceecddaed85dd3c7fc6370d3be696cab65461007 (diff)
Core/Spells: Fix stacking rules for Inspiration and Ancestral Healing
-rw-r--r--sql/base/world_database.sql4
-rw-r--r--sql/updates/world/2011_05_12_06_world_spell_group.sql2
2 files changed, 4 insertions, 2 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index 70c24b3a5f8..9e254b3cb31 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -17742,8 +17742,8 @@ INSERT INTO `spell_group` (`id`, `spell_id`) VALUES
(1094,34123), -- tree of life aura
(1095,20138), -- Improved Devotion Aura
-- Armor Increase Percentage Buff
-(1097,14892), -- Inspiration
-(1098,16176), -- Ancestral Healing
+(1097,14893), -- Inspiration
+(1098,16177), -- Ancestral Healing
-- Cast Speed Slow
(1100,1714), -- Curse of Tongues
(1101,31589), -- Slow
diff --git a/sql/updates/world/2011_05_12_06_world_spell_group.sql b/sql/updates/world/2011_05_12_06_world_spell_group.sql
new file mode 100644
index 00000000000..c93af3976df
--- /dev/null
+++ b/sql/updates/world/2011_05_12_06_world_spell_group.sql
@@ -0,0 +1,2 @@
+UPDATE `spell_group` SET `spell_id` = 14893 WHERE `id` = 1097;
+UPDATE `spell_group` SET `spell_id` = 16177 WHERE `id` = 1098;