From 0c6901700bc6310b8c65f08809dcaee4701f7f36 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Thu, 1 May 2025 00:02:14 +0200 Subject: [PATCH] fix Drop Chances STV Aged Gorilla Sinew - 2% Jungle Stalker Feather - 20% --- sql/world/base/zone_stranglethorn.sql | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sql/world/base/zone_stranglethorn.sql b/sql/world/base/zone_stranglethorn.sql index 5ed28a9..634d093 100644 --- a/sql/world/base/zone_stranglethorn.sql +++ b/sql/world/base/zone_stranglethorn.sql @@ -1,2 +1,8 @@ /* Drop chance for Pristine Tigress Fang was incorrectly set to 100 - updated to 4 */ UPDATE `creature_loot_template` SET `Chance` = 4 WHERE `Item` = 3839 AND `Entry` = 772; + +/* Drop chance for Aged Gorilla Sinew was incorrectly set to 10 - updated to 2 */ +UPDATE `creature_loot_template` SET `Chance` = 2 WHERE `Item` = 3862; + +/* Drop chance for Jungle Stalker Feather was incorrectly set to 80 - updated to 20 */ +UPDATE `creature_loot_template` SET `Chance` = 20 WHERE `Item` = 3863;