diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2023-05-05 12:18:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 12:18:07 +0200 |
commit | 01e43a244d07f80e0729db7e15b1b940ede53a47 (patch) | |
tree | a3f99da2ea4f773095743b3718cc308eb2d208c5 /sql | |
parent | 046c6b6a3a58460b6c13c8ef1bb25aa3482aeeee (diff) |
DB/Graveyard: Fix graveyard for Shadowfang Keep
Also fix faction for 2 graveyards and display of neargrave command.
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2023_05_05_00_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2023_05_05_00_world.sql b/sql/updates/world/3.3.5/2023_05_05_00_world.sql new file mode 100644 index 00000000000..64d83138f92 --- /dev/null +++ b/sql/updates/world/3.3.5/2023_05_05_00_world.sql @@ -0,0 +1,10 @@ +-- +UPDATE `graveyard_zone` SET `Faction` = 67 WHERE `ID` = 97 AND `GhostZone` = 209; +UPDATE `graveyard_zone` SET `Faction` = 469 WHERE `ID` = 149 AND `GhostZone` = 209; + + +DELETE FROM `graveyard_zone` WHERE `ID`= 1256 AND `GhostZone` = 209; +INSERT INTO `graveyard_zone` VALUES +(1256, 209, 0, 'Silverpine Forest, South GY - Silverpine Forest'); + +UPDATE `command` SET `help` = 'Syntax: .neargrave [alliance horde]\r\n\r\nFind nearest graveyard linked to zone (or only nearest from accepts alliance or horde faction ghosts).' WHERE `name` = 'neargrave'; |