diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-12-28 12:14:31 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-12-28 12:16:36 -0300 |
commit | fed9e87bb007c9c535f963b3d21430a214c54dba (patch) | |
tree | 62aa403e5a47c5480361335c1d84c7ec6250ad04 | |
parent | bc570b3cf678694c7f8815bce81b9f0352741dce (diff) |
DB/Spell: Restrict Karazhan book buffs to that raid
Ref #16049
-rw-r--r-- | sql/updates/world/3.3.5/2017_12_28_01_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2017_12_28_01_world.sql b/sql/updates/world/3.3.5/2017_12_28_01_world.sql new file mode 100644 index 00000000000..bc082badcf2 --- /dev/null +++ b/sql/updates/world/3.3.5/2017_12_28_01_world.sql @@ -0,0 +1,6 @@ +DELETE FROM `spell_area` WHERE `spell` IN (30550, 30557, 30562, 30567); +INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `raceMask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES +(30550, 3457, 0, 0, 0, 0, 2, 0, 64, 11), +(30557, 3457, 0, 0, 0, 0, 2, 0, 64, 11), +(30562, 3457, 0, 0, 0, 0, 2, 0, 64, 11), +(30567, 3457, 0, 0, 0, 0, 2, 0, 64, 11); |