fix(DB/GO): Relocate Peacebloom in Elwynn Forest to avoid collision with Darkmoon Faire (#7096)

* 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ì <stefanoborzi32@gmail.com>
Co-authored-by: Lukas Volgger <55922592+LukasVolgger@users.noreply.github.com>
This commit is contained in:
syssneck
2021-07-30 00:07:35 +02:00
committed by GitHub
parent 498e01e7fc
commit f7d918d71f

View File

@@ -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;