From d3b2d8a53a17c6d424577e7e911f1bc7059342ce Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Wed, 7 Jul 2021 22:25:36 +0930 Subject: [PATCH] fix(DB/Loot): correct Blackwater Cutlass drops (#6709) --- .../pending_db_world/rev_1625375927776772391.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1625375927776772391.sql diff --git a/data/sql/updates/pending_db_world/rev_1625375927776772391.sql b/data/sql/updates/pending_db_world/rev_1625375927776772391.sql new file mode 100644 index 000000000..e3f84287a --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1625375927776772391.sql @@ -0,0 +1,16 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625375927776772391'); + +-- Delete Blackwater Cutlass from RLT 24078 +DELETE FROM `reference_loot_template` WHERE `Entry` = 24078 AND `Item` = 1951; + +-- Blackwater Cutlass added to Defias Pirate loot table with 6% drop rate +DELETE FROM `creature_loot_template` WHERE `Entry` = 657 AND `Item` = 1951; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(657, 1951, 0, 6, 0, 1, 1, 1, 1, 'Blackwater Cutlass'); + +-- Blackwater Cutlass added to Defias Squallshaper loot table with 6% drop rate +DELETE FROM `creature_loot_template` WHERE `Entry` = 1732 AND `Item` = 1951; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(1732, 1951, 0, 6, 0, 1, 1, 1, 1, 'Blackwater Cutlass'); + +