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');