From 55daa07a562c7a624599f8fb5b1938da21aa28d8 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Wed, 1 Sep 2021 21:59:02 +0930 Subject: [PATCH] fix(DB/gameobject_loot): delete incorrect items from Alterac Granite loot (#7597) --- .../sql/updates/pending_db_world/rev_1630118063882922979.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630118063882922979.sql diff --git a/data/sql/updates/pending_db_world/rev_1630118063882922979.sql b/data/sql/updates/pending_db_world/rev_1630118063882922979.sql new file mode 100644 index 000000000..0f43ef785 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630118063882922979.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630118063882922979'); + +-- Delete all items except Alterac Granite from Alterac Granite spawns +DELETE FROM `gameobject_loot_template` WHERE `Entry` = 2145 AND `Item` <> 4521; +