mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 03:15:41 +00:00
fix (db): Graveyard Horde Teldrassil (#12278)
* fix (db): Graveyard horde Teldrassil * update (db): update for workflow code style check * fix (db): File Rename * update (db): Typo
This commit is contained in:
13
data/sql/updates/pending_db_world/darnassus_grave_fixit.sql
Normal file
13
data/sql/updates/pending_db_world/darnassus_grave_fixit.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
-- delete wrong game_graveyard link to graveyard_zone
|
||||
DELETE FROM `graveyard_zone` WHERE `ID`=469 AND `GhostZone`=141;
|
||||
DELETE FROM `graveyard_zone` WHERE `ID`=469 AND `GhostZone`=1657;
|
||||
|
||||
-- originally was faction 469 alliance and should be 0 ID originally 469
|
||||
DELETE FROM `graveyard_zone` WHERE `ID`=91 AND `GhostZone`=141;
|
||||
INSERT INTO `graveyard_zone` (`ID`, `GhostZone`, `Faction`, `Comment`) VALUES
|
||||
(91, 141, 0, 'Teldrassil, Dolanaar GY');
|
||||
|
||||
-- id originally 469
|
||||
DELETE FROM `graveyard_zone` WHERE `ID`=91 AND `GhostZone`=1657;
|
||||
INSERT INTO `graveyard_zone` (`ID`, `GhostZone`, `Faction`, `Comment`) VALUES
|
||||
(91, 1657, 67, 'Teldrassil, Dolanaar GY');
|
||||
Reference in New Issue
Block a user