diff options
author | offl <offl@users.noreply.github.com> | 2020-05-01 16:53:18 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2020-05-01 16:53:18 +0200 |
commit | 7701243f6ae419a302e624fefd5153fc7f9e09e0 (patch) | |
tree | 47f18d94a3f136871a1852f4eba8f1b3ff171d35 | |
parent | a1bd3c1b2e2e532989d16dc8b39018af5721a610 (diff) |
DB/Loot: Remove incorrect/weird loot from some gameobjects
Closes #24529
-rw-r--r-- | sql/updates/world/3.3.5/2020_05_01_02_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_05_01_02_world.sql b/sql/updates/world/3.3.5/2020_05_01_02_world.sql new file mode 100644 index 00000000000..4e58f907aa9 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_05_01_02_world.sql @@ -0,0 +1,12 @@ +-- +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 1701 AND `Item` != 3418; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 2502 AND `Item` != 159; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 2765 AND `Item` != 5270; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 2767 AND `Item` != 5273; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 2959 AND `Item` NOT IN (5500,5504); +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 3309 AND `Item` = 1708; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 4227 AND `Item` = 5504; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 5446 AND `Item` = 3356; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 11281 AND `Item` = 11444; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 11282 AND `Item` = 11325; +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 15124 AND `Item` != 16784; |