diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2016-11-27 07:47:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-27 07:47:20 +0100 |
commit | 08ab48ea5bf01cb35fbb5b105e51bc1a128704d6 (patch) | |
tree | 2df00ef16d933e70b0330547a0466be315a3b9b0 /sql | |
parent | b8ef8466a91a55d42a395bf71ce005ae9ef02ebd (diff) |
DB/Spell: Warrior Shouts
Closes #14931 by Ayik0
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2016_11_27_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2016_11_27_00_world.sql b/sql/updates/world/master/2016_11_27_00_world.sql new file mode 100644 index 00000000000..1bc69656109 --- /dev/null +++ b/sql/updates/world/master/2016_11_27_00_world.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `spell_group_stack_rules` WHERE `group_id`= 2500 AND `stack_rule`= 2; +INSERT INTO `spell_group_stack_rules` (`group_id`,`stack_rule`) VALUES (2500, 2); + +DELETE FROM `spell_group` WHERE `id`= 2500 AND `spell_id` IN (469,6673); +INSERT INTO `spell_group` (`id`,`spell_id`) VALUES +(2500, 469), -- Commanding Shout +(2500, 6673); -- Battle Shout +-- |