diff options
author | Killyana <morphone1@gmail.com> | 2019-03-09 16:56:20 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2019-03-09 16:56:20 +0100 |
commit | dff66b9daa14a17613b216e8bf699793740f7228 (patch) | |
tree | 53dad2e5e222293ca187422873c1c58a10733c01 | |
parent | 73d2e5da37aa23cd439f1048bce9e28d483a4c27 (diff) |
DB/Spell: Disable Wail of the Banshee and Clutch of Foresight in Arena
Closes #1845
-rw-r--r-- | sql/updates/world/3.3.5/2019_03_09_02_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_03_09_02_world.sql b/sql/updates/world/3.3.5/2019_03_09_02_world.sql new file mode 100644 index 00000000000..bf36307ce00 --- /dev/null +++ b/sql/updates/world/3.3.5/2019_03_09_02_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `disables` WHERE `sourceType` = 0 AND `entry` IN (17639, 29443); +INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES +(0, 17639, 256, 0, 0, 'Wail of the Banshee'), +(0, 29443, 256, 0, 0, 'Clutch of Foresight'); |