forked from azerothcore/azerothcore-wotlk
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Playerbot
- Loading branch information
Showing
81 changed files
with
3,116 additions
and
583 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
-- DB update 2024_11_15_00 -> 2025_01_31_00 | ||
-- | ||
DROP TABLE IF EXISTS `world_state`; | ||
CREATE TABLE IF NOT EXISTS `world_state` ( | ||
`Id` INT UNSIGNED NOT NULL COMMENT 'Internal save ID', | ||
`Data` longtext, | ||
PRIMARY KEY(`Id`) | ||
) ENGINE=MYISAM DEFAULT CHARSET=utf8mb4 COMMENT='WorldState save system'; | ||
|
||
-- Isle of Quel'danas is in its final stage with all subphases completed | ||
-- open all Sunwell Plateau gates | ||
DELETE FROM `world_state` WHERE `Id` = 20; | ||
INSERT INTO `world_state` (`Id`, `Data`) VALUES(20, '3 15 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 3 80 80 80'); |
Oops, something went wrong.