From baea9a845a77b39004b62a645384591fde1a275f Mon Sep 17 00:00:00 2001 From: sogladev Date: Tue, 28 Apr 2026 13:32:07 +0200 Subject: [PATCH] fix(DB/Loot): Allow 10m Heart of Magic to be looted in 25man EoE (#25443) --- .../updates/pending_db_world/rev_1776028939227348948.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1776028939227348948.sql diff --git a/data/sql/updates/pending_db_world/rev_1776028939227348948.sql b/data/sql/updates/pending_db_world/rev_1776028939227348948.sql new file mode 100644 index 000000000..0beb78677 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1776028939227348948.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `gameobject_loot_template` WHERE (`Entry` = 26860); +INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(26860, 44651, 0, 100, 1, 1, 1, 1, 1, 'Heart of Magic - Heart of Magic - 25m'), +(26860, 44650, 0, 100, 1, 1, 2, 1, 1, 'Heart of Magic - Heart of Magic - 10m'); + +DELETE FROM `gameobject_questitem` WHERE (`GameObjectEntry` = 194159) AND (`Idx` IN (1)); +INSERT INTO `gameobject_questitem` (`GameObjectEntry`, `Idx`, `ItemId`, `VerifiedBuild`) VALUES +(194159, 1, 44650, 0);