diff options
author | tkrokli <tkrokli@users.noreply.github.com> | 2016-12-08 03:32:30 +0100 |
---|---|---|
committer | tkrokli <tkrokli@users.noreply.github.com> | 2016-12-08 03:35:57 +0100 |
commit | bb15e2c158eabc8ee975c6d54f48fd66d2286208 (patch) | |
tree | 10113478e2bfc8e9a65a981b11435c771fa7bbae /sql | |
parent | eba8ed329fc558445c4c392ea91cc72f7b57070d (diff) |
DB/graveyard: add correct graveyard in Ammen Vale
Stops the player's ghost from teleporting to Westfall on release spirit.
Closes #18389
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2016_12_08_00_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2016_12_08_00_world.sql b/sql/updates/world/master/2016_12_08_00_world.sql new file mode 100644 index 00000000000..ee4412fb8c1 --- /dev/null +++ b/sql/updates/world/master/2016_12_08_00_world.sql @@ -0,0 +1,6 @@ +-- +-- link Graveyard 918 to zone 6456 (Ammen Vale - unlinked zone) +DELETE FROM `graveyard_zone` WHERE `ID`= 918 AND `GhostZone`= 6456; +INSERT INTO `graveyard_zone` (`ID`,`GhostZone`,`Faction`,`Comment`) VALUES +(918, 6456, 469, 'Azuremyst Isle, Crash Site GY - Ammen Vale'); +-- |