From 05e017872068efc7ec5d082a27689f198e7444d8 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Mon, 14 Jun 2021 17:28:16 +0930 Subject: [PATCH] fix(DB/loot): delete more overlevelled items from world NPCs (#6245) --- .../rev_1622966158177775526.sql | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1622966158177775526.sql diff --git a/data/sql/updates/pending_db_world/rev_1622966158177775526.sql b/data/sql/updates/pending_db_world/rev_1622966158177775526.sql new file mode 100644 index 000000000..16f7ed012 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1622966158177775526.sql @@ -0,0 +1,35 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622966158177775526'); + +-- Removes lvl 27 Cuirboulli Boots from lvl 21 Blackfathom Tide Priestess +DELETE FROM `creature_loot_template` WHERE `Entry` = 4802 AND `Item` = 2143; + +-- Removes lvl 27 Cuirboulli Boots from lvl 21 Blackfathom Oracle +DELETE FROM `creature_loot_template` WHERE `Entry` = 4803 AND `Item` = 2143; + +-- Removes lvl 65 Idol of Brutality from lvl 59 Hive'Zora Tunneler +DELETE FROM `creature_loot_template` WHERE `Entry` = 11726 AND `Item` = 23198; + +-- Removes lvl 65 Idol of Brutality from lvl 60 Twilight Stonecaller +DELETE FROM `creature_loot_template` WHERE `Entry` = 11882 AND `Item` = 23198; + +-- Removes lvl 17 Stonesplinter Rags from lvl 12 Stonesplinter Scout +DELETE FROM `creature_loot_template` WHERE `Entry` = 1162 AND `Item` = 5109; + +-- Removes lvl 17 Stonesplinter Rags from lvl 12 Stonesplinter Trogg +DELETE FROM `creature_loot_template` WHERE `Entry` = 1161 AND `Item` = 5109; + +-- Removes lvl 23 Scouting Spaulders from lvl 18 Foreman Thistlenettle +DELETE FROM `creature_loot_template` WHERE `Entry` = 626 AND `Item` = 6588; + +-- Removes lvl 65 Idol of Brutality from lvl 60 Scourge Champion +DELETE FROM `creature_loot_template` WHERE `Entry` = 8529 AND `Item` = 23198; + +-- Removes lvl 65 Idol of Brutality from lvl 60 Hive'Zora Hive Sister +DELETE FROM `creature_loot_template` WHERE `Entry` = 11729 AND `Item` = 23198; + +-- Removes lvl 65 Idol of Brutality from lvl 60 Hive'Regal Ambusher +DELETE FROM `creature_loot_template` WHERE `Entry` = 11730 AND `Item` = 23198; + +-- Removes lvl 65 Idol of Brutality from lvl 60 Hive'Regal Spitfire +DELETE FROM `creature_loot_template` WHERE `Entry` = 11732 AND `Item` = 23198; +