fix(DB/Loot): remove Arena Spoils items from NPC drop tables (#7728)

This commit is contained in:
Azcobu
2021-09-07 18:50:10 +09:30
committed by GitHub
parent a561ce8937
commit 8e43c24f57

View File

@@ -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);