From 8e43c24f5762f78baedb6151b96d7f19b42430b1 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Tue, 7 Sep 2021 18:50:10 +0930 Subject: [PATCH] fix(DB/Loot): remove Arena Spoils items from NPC drop tables (#7728) --- .../updates/pending_db_world/rev_1630816536518638817.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630816536518638817.sql diff --git a/data/sql/updates/pending_db_world/rev_1630816536518638817.sql b/data/sql/updates/pending_db_world/rev_1630816536518638817.sql new file mode 100644 index 000000000..2abb9d6c0 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630816536518638817.sql @@ -0,0 +1,8 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630816536518638817'); + +-- Delete Arena Spoils items from arena team loot tables +DELETE FROM `creature_loot_template` WHERE `Entry` IN (16049, 16050, 16051, 16052, 16055, 16058, 16095); + +-- Clear loot tables for arena team +UPDATE `creature_template` SET `lootid` = 0 WHERE `Entry` IN (16049, 16050, 16051, 16052, 16055, 16058, 16095); +