From fa8f0961e7b7f24b429b88222e2443964103f856 Mon Sep 17 00:00:00 2001 From: Sylvania Ops Date: Fri, 19 Jun 2026 15:56:03 +0000 Subject: [PATCH] Fix coffre Blade of the Anointed (SM 214284): loot manquant => quete 31513/31514 infinissable --- sql/sylvania/fix_sm_blade_chest_214284.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sql/sylvania/fix_sm_blade_chest_214284.sql diff --git a/sql/sylvania/fix_sm_blade_chest_214284.sql b/sql/sylvania/fix_sm_blade_chest_214284.sql new file mode 100644 index 0000000..46b507d --- /dev/null +++ b/sql/sylvania/fix_sm_blade_chest_214284.sql @@ -0,0 +1,20 @@ +-- ============================================================ +-- Fix : Coffre "Blade of the Anointed" (GO 214284) — Monastère Ecarlate (map 1004) +-- Quête 31513 "Blades of the Anointed" / 31514 "Unto Dust Thou Shalt Return" +-- Bug : Data1(lootId)=0 + gameobject_loot_template VIDE => coffre s ouvre vide, +-- l item 87282 (lames) jamais donné => roue crantée mais clic sans effet, +-- quête infinissable. Tous les autres coffres de quête suivent Data1=entry+loot. +-- Date : 2026-06-19 +-- Rollback : voir bloc ROLLBACK en bas +-- ============================================================ +UPDATE gameobject_template SET Data1=214284 WHERE entry=214284; + +DELETE FROM gameobject_loot_template WHERE Entry=214284; +INSERT INTO gameobject_loot_template + (Entry, Item, Reference, Chance, QuestRequired, LootMode, GroupId, MinCount, MaxCount, Comment) +VALUES + (214284, 87282, 0, 100, 1, 1, 0, 1, 1, "Blades of the Anointed - quest 31513"); + +-- ---------- ROLLBACK ---------- +-- UPDATE gameobject_template SET Data1=0 WHERE entry=214284; +-- DELETE FROM gameobject_loot_template WHERE Entry=214284;