From d1acab8abff1bc5d8a8f8c22fc5c17da84deabee Mon Sep 17 00:00:00 2001 From: M'Dic Date: Fri, 21 Oct 2022 06:33:10 -0400 Subject: [PATCH] Fix (db): Graveyard Frostmane Hold Alliance (#13448) Frostmane Hold Grave Fix Alliance --- .../pending_db_world/frostmane_alliance_grave_fix.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/frostmane_alliance_grave_fix.sql diff --git a/data/sql/updates/pending_db_world/frostmane_alliance_grave_fix.sql b/data/sql/updates/pending_db_world/frostmane_alliance_grave_fix.sql new file mode 100644 index 000000000..a76d5e7a0 --- /dev/null +++ b/data/sql/updates/pending_db_world/frostmane_alliance_grave_fix.sql @@ -0,0 +1,7 @@ +-- https://github.com/azerothcore/azerothcore-wotlk/issues/13391 +-- corrects alliance respawn in wrong zone +UPDATE `graveyard_zone` SET `ID`='1471' WHERE `ID`=101 AND `GhostZone`=135; + +-- we add a new ghost zone due to the second you revive in Iceflow Lake you go to another grave yard on resurrection +DELETE FROM `graveyard_zone` WHERE `ID`=1471 AND `GhostZone`=211; +INSERT INTO `graveyard_zone` (`ID`, `GhostZone`, `Faction`, `Comment`) VALUES (1471, 211, 469, 'Dun Morogh, Iceflow Lake - Dun Morogh');