From 201b3235496bdee2d50e8840744d31db7ce434a2 Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Wed, 28 Jul 2021 22:28:48 +0200 Subject: [PATCH] fix(DB/gameobject): Peacebloom spawn location (#5837) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(DB/gameobject): Peacebloom spawn location Peacebloom node (id: 1396) was positioned on a road. It has been moved to a nearby location next to the road, where there are no other herb nodes close by. Closes #5836 * fix(DB/gameobject): Remove Redridge Peaceblooms Peacebloom nodes shouldn't spawn in Redridge Mountains zone according to sources, so the ones I found are being removed. Closes #5836 * Remove deleted gobs from pool Co-authored-by: Francesco Borzì Co-authored-by: Stefano Borzì --- .../updates/pending_db_world/rev_1620978339651948745.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1620978339651948745.sql diff --git a/data/sql/updates/pending_db_world/rev_1620978339651948745.sql b/data/sql/updates/pending_db_world/rev_1620978339651948745.sql new file mode 100644 index 000000000..b496f6be7 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1620978339651948745.sql @@ -0,0 +1,8 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1620978339651948745'); + +DELETE FROM `gameobject` +WHERE `guid` IN (1396, 1374, 1686, 1740); + +DELETE FROM `pool_gameobject` +WHERE `guid` IN (1396, 1374, 1686, 1740) +AND `pool_entry` = 950;