diff options
author | offl <offl@users.noreply.github.com> | 2020-05-06 22:44:49 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2020-05-06 22:44:49 +0200 |
commit | e64ed729d7bb17074b9f4fc1de80c726a2ae4903 (patch) | |
tree | 86135793d0644bbc3b12da40de4212ea1d63e142 | |
parent | 7a26ea492bd7ab258109d9940ba9cac03374aeb3 (diff) |
DB/Loot: Remove more incorrect items from creatures
Closes #24573
-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); |