From c5891b0b1fe3608384505e871a7dec6ef2e0dcb2 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Wed, 3 Nov 2021 21:52:19 +1030 Subject: [PATCH] fix(DB/creature_loot): Defias Rapier drops (#8836) --- .../pending_db_world/rev_1635586926158019590.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1635586926158019590.sql diff --git a/data/sql/updates/pending_db_world/rev_1635586926158019590.sql b/data/sql/updates/pending_db_world/rev_1635586926158019590.sql new file mode 100644 index 000000000..491f12301 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1635586926158019590.sql @@ -0,0 +1,10 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1635586926158019590'); + +-- Deletes Defias Rapier from RLT 24077 +DELETE FROM `reference_loot_template` WHERE `Entry` = 24077 AND `Item` = 1925; + +-- Adds Defias Rapier drop to Defias Watchman +DELETE FROM `creature_loot_template` WHERE `Entry` = 1725 AND `Item` = 1925; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(1725, 1925, 0, 6.6, 0, 1, 1, 1, 1, 'Defias Watchman - Defias Rapier'); +