From 0f3a1815611df901140bbfa1a4aee30d757bcaaf Mon Sep 17 00:00:00 2001 From: Peter Date: Wed, 10 Mar 2021 00:10:15 +0100 Subject: [PATCH] fix(DB/creature): Kolkar Drudge and Kolkar Outrunner resistances (#4746) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(DB/creature): Kolkar Drudge and Kolkar Outrunner resistances They have 70 fire and 30 shadow resistance while they should have none Closes AzerothCore issue #4670 * Update data/sql/updates/pending_db_world/rev_1615103299173233870.sql Co-authored-by: Trond B. Krokli <38162891+illfated@users.noreply.github.com> Co-authored-by: Zoidwaffle Co-authored-by: Trond B. Krokli <38162891+illfated@users.noreply.github.com> Co-authored-by: Stefano Borzì --- data/sql/updates/pending_db_world/rev_1615103299173233870.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1615103299173233870.sql diff --git a/data/sql/updates/pending_db_world/rev_1615103299173233870.sql b/data/sql/updates/pending_db_world/rev_1615103299173233870.sql new file mode 100644 index 000000000..60f490d87 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1615103299173233870.sql @@ -0,0 +1,4 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1615103299173233870'); + +-- Kolkar Drudge and Kolkar Outrunner spell resistances +UPDATE `creature_template` SET `resistance2`=0, `resistance5`=0 WHERE `entry` IN (3119,3120);