From 0ff2b6e69093d35ccaa901a007b43118eeb5e0dc Mon Sep 17 00:00:00 2001 From: Synful-Syn Date: Sun, 14 May 2023 10:34:44 -0400 Subject: [PATCH] fix(DB/Loot): Orphic Bracers (#16188) * fix(DB/Loot): Orphic Bracers * Update data/sql/updates/pending_db_world/fix-orphic-bracers-loot.sql * Update data/sql/updates/pending_db_world/fix-orphic-bracers-loot.sql * Add the delete creature_loot_template line before inserting the orphic bracers --- .../updates/pending_db_world/fix-orphic-bracers-loot.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/fix-orphic-bracers-loot.sql diff --git a/data/sql/updates/pending_db_world/fix-orphic-bracers-loot.sql b/data/sql/updates/pending_db_world/fix-orphic-bracers-loot.sql new file mode 100644 index 000000000..ff9c70437 --- /dev/null +++ b/data/sql/updates/pending_db_world/fix-orphic-bracers-loot.sql @@ -0,0 +1,7 @@ +DELETE FROM `reference_loot_template` WHERE `Item` = 18337; +DELETE FROM `creature_loot_template` WHERE `Item` = 18337; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(11480, 18337, 0, 0.7, 0, 1, 0, 1, 1, 'Arcane Aberration - Orphic Bracers'), +(14399, 18337, 0, 0.9, 0, 1, 0, 1, 1, 'Arcane Torrent - Orphic Bracers'), +(11483, 18337, 0, 0.8, 0, 1, 0, 1, 1, 'Mana Remnant - Orphic Bracers'), +(11484, 18337, 0, 0.9, 0, 1, 0, 1, 1, 'Residual Monstrosity - Orphic Bracers');