From 9dca6381f76a63e2e59e9b131518eeda2cbc462f Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Mon, 13 Sep 2021 16:06:18 +0200 Subject: [PATCH] fix(DB/Creature): remove skinning from rock worm, rock borer and vile larva (#7791) --- .../sql/updates/pending_db_world/rev_1631169209646445982.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1631169209646445982.sql diff --git a/data/sql/updates/pending_db_world/rev_1631169209646445982.sql b/data/sql/updates/pending_db_world/rev_1631169209646445982.sql new file mode 100644 index 000000000..230a65579 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1631169209646445982.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631169209646445982'); + +-- Removed the skinning loot of Rock Worm (NPC 11788), Rock Borer (NPC 11787) and Vile Larva (NPC 12218) +UPDATE `creature_template` SET `skinloot` = 0 WHERE (`entry` IN (11788, 11787, 12218)); +