diff options
author | Rushor <PBienati@web.de> | 2016-02-08 16:31:56 +0100 |
---|---|---|
committer | Rushor <PBienati@web.de> | 2016-02-08 16:31:56 +0100 |
commit | bf25a4b8b0d52ae5b3cf79be7db95902ca128d4b (patch) | |
tree | d0b7a5279c4454237ba25ad1e0e59e0fcf8a7f2c | |
parent | ef280c94d44aa3b36ebefa2d962354105090e29b (diff) |
DB/Creature: Frost Freeze Trap - Spellcast should ignore LOS
* we are using this adding in disables for many spells. if the object edges calculation is improved this addition can be removed
* thanks to Runico for report
* closes #13600
-rw-r--r-- | sql/updates/world/2016_02_08_03_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/2016_02_08_03_world.sql b/sql/updates/world/2016_02_08_03_world.sql new file mode 100644 index 00000000000..fe429cf42c8 --- /dev/null +++ b/sql/updates/world/2016_02_08_03_world.sql @@ -0,0 +1,5 @@ +-- +-- DB/Creature: Frost Freeze Trap - Spellcast +DELETE FROM `disables` WHERE `sourceType`=0 AND `entry`=70460; +INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES +(0, 70460, 64, '', '', 'Ignore LOS for Coldflame Jets'); |