diff options
author | offl <offl@users.noreply.github.com> | 2020-05-02 17:47:40 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2020-05-02 17:47:40 +0200 |
commit | 9f5bafa7c662d39d891126f9c09de6cd654a0342 (patch) | |
tree | 22f60b7589b225942ec2de1abeaa8ea6fb56f21d /sql/updates | |
parent | e3b8b05aa7d811f2ca595e2aed5e8237947a0b81 (diff) |
DB/Loot: Remove wrong items from Weapon Crates and Armor Crates
Closes #24536
Diffstat (limited to 'sql/updates')
-rw-r--r-- | sql/updates/world/3.3.5/2020_05_02_02_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_05_02_02_world.sql b/sql/updates/world/3.3.5/2020_05_02_02_world.sql new file mode 100644 index 00000000000..d6bff94b106 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_05_02_02_world.sql @@ -0,0 +1,8 @@ +-- Weapon Crates and Armor Crates should contain only weapons and armor +DELETE FROM `gameobject_loot_template` WHERE +(`Entry` = 404 AND `GroupId` IN (2,4)) OR +(`Entry` = 405 AND `GroupId` IN (0,2,4)) OR +(`Entry` = 441 AND `GroupId` IN (0,2,4)) OR +(`Entry` = 444 AND `GroupId` IN (2,4)) OR +(`Entry` = 1618 AND `GroupId` IN (2,4)) OR +(`Entry` = 1619 AND `GroupId` IN (0,2,4)); |