From ad9e12aed920cfc9fd5f49394a1810b07a39ef45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E4=BD=A9=E8=8C=B9?= Date: Thu, 22 Sep 2022 12:14:57 -0600 Subject: [PATCH] Correct drop rate for Mature Blue Dragon Sinew --- sql/world/base/item_changes.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/world/base/item_changes.sql b/sql/world/base/item_changes.sql index 9c8ab34..2cd5380 100644 --- a/sql/world/base/item_changes.sql +++ b/sql/world/base/item_changes.sql @@ -20848,3 +20848,5 @@ UPDATE item_template SET Quality = 1, BuyPrice = 5000, SellPrice = 1250 WHERE en /* Riding Turtle */ UPDATE item_template SET Quality = 1, RequiredLevel = 20 WHERE entry=23720; +/* Correct drop rate for Mature Blue Dragon Sinew */ +UPDATE `creature_loot_template` SET `chance` = 0.5 WHERE `item` = 18704 AND `entry` IN (7435, 7436, 7437);