aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorKeader <keader.android@gmail.com>2019-07-24 08:31:34 -0300
committerGitHub <noreply@github.com>2019-07-24 08:31:34 -0300
commit4c2f7df4f39cd98eae21bc64ebac59e3d2eea577 (patch)
tree7a3bd80bea6bb037ad4c9f4e5920321a9459d578 /sql
parent8116c3cb663e880efb9ba80180c3f2b991661d94 (diff)
Core/Spells: Added spellgroup support to HandleModCastingSpeed (#23592)
And fixed stack of Power Infusion, Bloodlust, Icy veins and Heroism.
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/3.3.5/2019_07_24_00_world.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_07_24_00_world.sql b/sql/updates/world/3.3.5/2019_07_24_00_world.sql
new file mode 100644
index 00000000000..97d47fd919c
--- /dev/null
+++ b/sql/updates/world/3.3.5/2019_07_24_00_world.sql
@@ -0,0 +1,11 @@
+-- Heroism/Bloodlust should not stack with Power Infusion
+DELETE FROM `spell_group` WHERE `id`=1122;
+INSERT INTO `spell_group` (`id`, `spell_id`) VALUES
+(1122,32182),
+(1122,2825),
+(1122,10060),
+(1122,12472);
+
+DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1122;
+INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES
+(1122,4);