From 7f49ec7a7a6e007e092a352dc43bd77a0cc4be5f Mon Sep 17 00:00:00 2001 From: ZhengPeiRu21 <98835050+ZhengPeiRu21@users.noreply.github.com> Date: Sat, 18 Jun 2022 06:40:00 -0600 Subject: [PATCH] fix(DB/creature_template): Fix Domesticated Felboar (#12057) * fix(DB/creature_template): Fix Domensticated Felboar * Removed unused Domensticated Felboar loot from creature_loot_template --- data/sql/updates/pending_db_world/rev_1655221651010939500.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1655221651010939500.sql diff --git a/data/sql/updates/pending_db_world/rev_1655221651010939500.sql b/data/sql/updates/pending_db_world/rev_1655221651010939500.sql new file mode 100644 index 000000000..c9706b51d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1655221651010939500.sql @@ -0,0 +1,3 @@ +-- Update Domesticated Felboar - they should not provide XP, Loot, or be Skinnable as of an exploit fix in 2.4 +UPDATE `creature_template` SET `lootid` = 0, `skinloot` = 0, `ExperienceModifier` = 0 WHERE `entry` = 21195; +DELETE FROM `creature_loot_template` WHERE `entry` = 21195;