From e043f0356db78cbce661d6a89b8a63c57a73aae6 Mon Sep 17 00:00:00 2001 From: sogladev Date: Wed, 29 Apr 2026 02:36:34 +0200 Subject: [PATCH] fix(DB/Loot): Sartharion 25M always drops 2 T7.5 Tokens (#25578) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../pending_db_world/rev_1777072262285005362.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1777072262285005362.sql diff --git a/data/sql/updates/pending_db_world/rev_1777072262285005362.sql b/data/sql/updates/pending_db_world/rev_1777072262285005362.sql new file mode 100644 index 000000000..d1f531f1f --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1777072262285005362.sql @@ -0,0 +1,12 @@ +-- +-- Sartharion 25M drops 2x T7.5 Gloves +SET @REF := 34377; +DELETE FROM `creature_loot_template` WHERE (`Entry` = 31311) AND (`Item` IN (5, 40628, 40629, 40630)); +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(31311, 5, -@REF, 100, 0, 1, 0, 2, 2, 'Sartharion (1) - (ReferenceTable)'); + +DELETE FROM `reference_loot_template` WHERE (`Entry` = @REF) AND (`Item` IN (40752, 40628, 40629, 40630)); +INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(@REF, 40628, 0, 0, 0, 1, 1, 1, 1, 'T7.5 Gloves Token'), +(@REF, 40629, 0, 0, 0, 1, 1, 1, 1, 'T7.5 Gloves Token'), +(@REF, 40630, 0, 0, 0, 1, 1, 1, 1, 'T7.5 Gloves Token');