From 364d715d073ecc0bf4d5ac3fa89e25c11a5af4a6 Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Fri, 18 Jun 2021 11:31:51 +0200 Subject: [PATCH] fix(DB/loot): Adjust Spellshock Leggings drops (#6288) Spellshock Leggings (id: 9484) were previously unobtainable. They should drop from certain high-level mobs in Zul'Farrak according to sources. - Closes #6026 - Closes chromiecraft/chromiecraft#690 --- .../updates/pending_db_world/rev_1623249558553944112.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1623249558553944112.sql diff --git a/data/sql/updates/pending_db_world/rev_1623249558553944112.sql b/data/sql/updates/pending_db_world/rev_1623249558553944112.sql new file mode 100644 index 000000000..3cdd88c2b --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1623249558553944112.sql @@ -0,0 +1,6 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623249558553944112'); + +DELETE FROM `creature_loot_template` WHERE `Item` = 9484 AND `Entry` IN (8127, 7267); +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(8127, 9484, 0, 0.01, 0, 1, 0, 1, 1, 'Antu\'Sul - Spellshock Leggings'), +(7267, 9484, 0, 0.01, 0, 1, 0, 1, 1, 'Cfieg Ukorz Sandscalp - Spellshock Leggings');