From 1bbc696097845317f09e2c03b38f4a54e34094e3 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Wed, 1 Sep 2021 23:18:35 +0930 Subject: [PATCH] fix(DB/Gameobject_loot): remove Rethban/Underlight ores from non-zone ores (#7641) --- .../updates/pending_db_world/rev_1630334062369804993.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630334062369804993.sql diff --git a/data/sql/updates/pending_db_world/rev_1630334062369804993.sql b/data/sql/updates/pending_db_world/rev_1630334062369804993.sql new file mode 100644 index 000000000..13d72a3b8 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630334062369804993.sql @@ -0,0 +1,8 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630334062369804993'); + +-- Remove Rethban and Underlight ores from non-specific area drops +DELETE FROM `gameobject_loot_template` WHERE `Entry` IN (1502, 1503) AND `Item` IN (2798, 22634); + +-- Change Tirisfal outlier node to standard non-Redridge copper node +UPDATE `gameobject` SET `id` = 1731 WHERE `id` = 2055 AND `guid` = 5483; +