From 3e1c326515ba1e2079e90a35864576eb3b644728 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Thu, 8 Jul 2021 01:26:39 +0930 Subject: [PATCH] fix(DB/Loot): correct various bag item lists (#6770) --- .../pending_db_world/rev_1625577114142882549.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1625577114142882549.sql diff --git a/data/sql/updates/pending_db_world/rev_1625577114142882549.sql b/data/sql/updates/pending_db_world/rev_1625577114142882549.sql new file mode 100644 index 000000000..3482d46ba --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1625577114142882549.sql @@ -0,0 +1,12 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625577114142882549'); + +-- Delete various incorrect items from Torwa's Pouch +DELETE FROM `item_loot_template` WHERE `Entry` = 11568 AND `Item` IN (2450, 3820, 8838, 11018, 16204); +-- Make Preserved Pheromone Mixture drop with 100% chance +UPDATE `item_loot_template` SET `Chance` = 100 WHERE `Entry` = 11568 AND `Item` = 11570; + +-- Delete Threshadon Meat/Preserved Pheromone from Hoard of the Black Dragonflight +DELETE FROM `item_loot_template` WHERE `Entry` = 10569 AND `Item` IN (11569, 11570); + +-- Delete Threshadon Meat/Preserved Pheromone from A Small Pack +DELETE FROM `item_loot_template` WHERE `Entry` = 11107 AND `Item` IN (11569, 11570);