From c11017af3d4f3ab7d6d86064f6e1bcca5b7df456 Mon Sep 17 00:00:00 2001 From: BeefSteak Date: Sun, 13 Nov 2022 18:43:40 +0000 Subject: [PATCH] fix(DB/Loot): Syndicate emblems in junkboxes (#13750) --- data/sql/updates/pending_db_world/removeloot.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 data/sql/updates/pending_db_world/removeloot.sql diff --git a/data/sql/updates/pending_db_world/removeloot.sql b/data/sql/updates/pending_db_world/removeloot.sql new file mode 100644 index 000000000..ddeb90920 --- /dev/null +++ b/data/sql/updates/pending_db_world/removeloot.sql @@ -0,0 +1,2 @@ +-- Remove Syndicate emblems from Battered Junkbox and Worn Junkbox +DELETE FROM `item_loot_template` WHERE `Entry` IN (16882, 16883) AND (`Item` IN (17124));