From 6c2cbdb097a343fe90eb3970fc4409488117cbf5 Mon Sep 17 00:00:00 2001 From: acidmanifesto Date: Fri, 31 Dec 2021 18:16:22 +0100 Subject: [PATCH] Fix (DB\Loot) Remove Tree Frog Loot (#9949) Tree Frog has no loot. This is comical that we had it like this for so long. --- .../updates/pending_db_world/rev_1640969804388366165.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1640969804388366165.sql diff --git a/data/sql/updates/pending_db_world/rev_1640969804388366165.sql b/data/sql/updates/pending_db_world/rev_1640969804388366165.sql new file mode 100644 index 000000000..5e30b5c31 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1640969804388366165.sql @@ -0,0 +1,8 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1640969804388366165'); + +-- removes loot id 7549 link from Tree Frog +UPDATE `creature_template` SET `lootid`=0 WHERE `entry`=7549; + +-- Removes Loot from creature Tree Frog NPC ID 7549 +DELETE FROM `creature_loot_template` WHERE `Entry`=7549 AND `Item`=18255 AND `Reference`=0 AND `GroupId`=0; +DELETE FROM `creature_loot_template` WHERE `Entry`=7549 AND `Item`=18297 AND `Reference`=0 AND `GroupId`=0;