From 7e089b1e8ac5c76dcd0775458142ac0f30efc45c Mon Sep 17 00:00:00 2001 From: schell244 Date: Sat, 13 Nov 2021 10:05:31 +0100 Subject: [PATCH] fix(DB/creature_loot): drop chance of items that start a quest at Elwyn Forest (#8969) --- .../pending_db_world/rev_1636103884460644100.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1636103884460644100.sql diff --git a/data/sql/updates/pending_db_world/rev_1636103884460644100.sql b/data/sql/updates/pending_db_world/rev_1636103884460644100.sql new file mode 100644 index 000000000..6e7fbcc18 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1636103884460644100.sql @@ -0,0 +1,14 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1636103884460644100'); + +-- Correct drop chance for Westfall Deed +UPDATE `creature_loot_template` SET `Chance`=4 WHERE `Item`=1972 AND `Entry` IN (6866,6846); +UPDATE `creature_loot_template` SET `Chance`=3 WHERE `Item`=1972 AND `Entry` IN (116,474,880,6927); + +-- Defias Ambusher and Surena Caledon should not drop Westfall Deed +DELETE FROM `creature_loot_template` WHERE `Item`=1972 AND `Entry` IN (583,881); +DELETE FROM `conditions` WHERE `SourceEntry`=1972 AND `SourceGroup` IN (583,881); + +-- Correct drop chance for Gold Pickup Schedule +UPDATE `creature_loot_template` SET `Chance`=86 WHERE `Item`=1307 AND `Entry`=100; +UPDATE `creature_loot_template` SET `Chance`=3 WHERE `Item`=1307 AND `Entry` IN (478,97); +UPDATE `creature_loot_template` SET `Chance`=1.9 WHERE `Item`=1307 AND `Entry`=448;