From f7d918d71fabd5d9afffce5b3c786d28590f904e Mon Sep 17 00:00:00 2001 From: syssneck <68868567+syssneck@users.noreply.github.com> Date: Fri, 30 Jul 2021 00:07:35 +0200 Subject: [PATCH] fix(DB/GO): Relocate Peacebloom in Elwynn Forest to avoid collision with Darkmoon Faire (#7096) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixed the one minute respawn of Peacebloom (guid=26813) in AC issue #6181 and deleted the event dependency on the Darkmoon Fare event * fix(DB/GO): One minute respawn of a Peacebloom in Elwynn #7096 ... (guid=26813) and deleted the event dependency on the Darkmoon Fare event. (updated newline) * Fix whitespace and newline Co-authored-by: Stefano Borzì Co-authored-by: Lukas Volgger <55922592+LukasVolgger@users.noreply.github.com> --- .../sql/updates/pending_db_world/rev_1627115613806415400.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1627115613806415400.sql diff --git a/data/sql/updates/pending_db_world/rev_1627115613806415400.sql b/data/sql/updates/pending_db_world/rev_1627115613806415400.sql new file mode 100644 index 000000000..85abe17c3 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1627115613806415400.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1627115613806415400'); + +-- Relocate Peacebloom gameobject (guid=26813) to avoid collision with Darkmoon Faire and remove it from game_event_gameobject (de-)spawns +UPDATE `gameobject` SET `position_x` = -9570.9, `position_y` = 120.2, `position_z` = 59.594 WHERE `guid` = 26813; +DELETE FROM `game_event_gameobject` WHERE `guid` = 26813 AND `eventEntry` = -4;