From 90abbcd5d843bc6a4405451711a89b0e66fad55a Mon Sep 17 00:00:00 2001 From: Rival Date: Sun, 14 Aug 2016 15:58:21 +0300 Subject: [PATCH] Core/Custom: Fix Dream Vision & Eye of Kilrogg aggro and visibility. (#85) * Core/Custom: Fix Dream Vision & Eye of Kilrogg aggro and visibility. * Fix tabs. Thanks @ShinDarth. --- data/sql/updates/2016_08_14_00.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/2016_08_14_00.sql diff --git a/data/sql/updates/2016_08_14_00.sql b/data/sql/updates/2016_08_14_00.sql new file mode 100644 index 000000000..af971c842 --- /dev/null +++ b/data/sql/updates/2016_08_14_00.sql @@ -0,0 +1,6 @@ +ALTER TABLE world_db_version CHANGE COLUMN 2016_08_10_01 2016_08_14_00 bit; + +-- Dream Vision make it trigger +UPDATE `creature_template` SET `flags_extra`='128' WHERE (`entry`='7863'); +-- Eye of Kilrogg (Summon) apply stealth aura +UPDATE `creature_template_addon` SET `auras`='2585' WHERE (`entry`='4277');