diff options
-rw-r--r-- | sql/updates/world/3.3.5/2020_05_06_01_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_05_06_01_world.sql b/sql/updates/world/3.3.5/2020_05_06_01_world.sql new file mode 100644 index 00000000000..7d6b0e33ba1 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_05_06_01_world.sql @@ -0,0 +1,8 @@ +-- Only from gameobjects or items +DELETE FROM `creature_loot_template` WHERE `Item` IN (11184,11185,11186,11188,11325); +-- Only from Molten Destroyer +DELETE FROM `creature_loot_template` WHERE `Item` = 11382 AND `Entry` != 11659; + +-- They shouldn't have loot table +DELETE FROM `creature_loot_template` WHERE `Entry` IN (8397,9136,10637,14757); +UPDATE `creature_template` SET `lootid` = 0 WHERE `Entry` IN (8397,9136,10637,14757); |