From 6ee0144a00468cbc26c5b7892f2d10cb59aad4cf Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Thu, 10 Oct 2024 02:09:48 +0200 Subject: [PATCH] Update zone_tirisfal_glades.sql - fix Rattlecage Skull drop chance Drop chance was set to 15% Now updated to 80% --- sql/world/base/zone_tirisfal_glades.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/world/base/zone_tirisfal_glades.sql b/sql/world/base/zone_tirisfal_glades.sql index 86717631..233642e3 100644 --- a/sql/world/base/zone_tirisfal_glades.sql +++ b/sql/world/base/zone_tirisfal_glades.sql @@ -10,6 +10,8 @@ INSERT INTO `creature_questender` (`id`, `quest`) VALUES (5667, 1470); -- Piercing the Veil (Warlock) DELETE FROM `creature_queststarter` WHERE `id`=5667 AND `quest`=1470; INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES (5667, 1470); +/* Drop chance for Rattlecage Skull was incorrectly set to 15 - updated to 80 */ +UPDATE `creature_loot_template` SET `Chance` = 80 WHERE `Entry` = 1890 AND `Item` = 6281; -- Wretched Zombie UPDATE `creature_template` SET `name`='Wretched Zombie' WHERE `entry`=1502;