From f0be1aa9010145736c10dae2191046194946378d Mon Sep 17 00:00:00 2001 From: neifion-00000000 <91289495+neifion-00000000@users.noreply.github.com> Date: Wed, 15 Mar 2023 16:23:15 -0500 Subject: [PATCH] fix(DB/Loot): Fix Warp splinter Normal Loot Drops (#15348) --- .../updates/pending_db_world/rev_1678614761475144800.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1678614761475144800.sql diff --git a/data/sql/updates/pending_db_world/rev_1678614761475144800.sql b/data/sql/updates/pending_db_world/rev_1678614761475144800.sql new file mode 100644 index 000000000..92951ae16 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1678614761475144800.sql @@ -0,0 +1,6 @@ +-- +-- Repair Warp Splinter Loot Table +UPDATE `reference_loot_template` SET `GroupId`=3 WHERE `Entry`=35006 AND `Item` IN (28370, 28367, 28371, 28348, 28350, 28349); +UPDATE `creature_loot_template` SET `MaxCount`=1 WHERE `Entry`=17977 AND `Item`=35006 AND `Reference`=35006 AND `GroupId`=2; +DELETE FROM `creature_loot_template` WHERE `Entry`=17977 AND `Item`=35006 AND `Reference`=35006 AND `GroupId`=3; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES (17977, 35006, 35006, 100, 0, 1, 3, 1, 1, 'Warp Splinter High Value Table - (ReferenceTable)');