From 2e77820153b12f40738a7950b6a87c1fa2281be8 Mon Sep 17 00:00:00 2001 From: samsam1993 <136090818+samsam1993@users.noreply.github.com> Date: Wed, 27 Sep 2023 11:45:07 +0300 Subject: [PATCH] fix(DB/reference_loot_template): Corrected Shadow Labyrinth gem drops (#17190) * fix(DB/reference_loot_template): Corrected Shadow Labyrinth gem drops Heroic Shadow Labyrinth bosses dropped incorrect gem. They had a chance to drop Glinting Fire Opal, but this fix corrects them to drop Etched Fire Opal instead. * Update data/sql/updates/pending_db_world/SL_gem_loot_fix.sql * Update data/sql/updates/pending_db_world/SL_gem_loot_fix.sql --------- Co-authored-by: Dan <83884799+elthehablo@users.noreply.github.com> --- data/sql/updates/pending_db_world/SL_gem_loot_fix.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/SL_gem_loot_fix.sql diff --git a/data/sql/updates/pending_db_world/SL_gem_loot_fix.sql b/data/sql/updates/pending_db_world/SL_gem_loot_fix.sql new file mode 100644 index 000000000..f7e3a95b4 --- /dev/null +++ b/data/sql/updates/pending_db_world/SL_gem_loot_fix.sql @@ -0,0 +1,2 @@ +-- +UPDATE `reference_loot_template` SET `Item` = 30559, `Comment` = 'Etched Fire Opal' WHERE `Entry` = 43010 AND `Item` = 30556;