diff options
-rw-r--r-- | sql/base/auth_database.sql | 13 | ||||
-rw-r--r-- | sql/updates/auth/cata_classic/2024_09_04_00_auth.sql | 11 |
2 files changed, 19 insertions, 5 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index b075e994174..ff313bc22d8 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -738,7 +738,8 @@ INSERT INTO `build_auth_key` VALUES (55460,'Win','x64','WoW',0xe5455f750394046cc9bd2ed0397f7418), (55613,'Win','x64','WoW',0x0ba3bff2e324fe30d15ba8a88cf8738b), (55639,'Win','x64','WoW',0xffd74533a9d95e1d38c972ba4f351b8d), -(56014,'Win','x64','WoW',0x89ad7a75e156374d41f0cc70455b2f6b); +(56014,'Win','x64','WoW',0x89ad7a75e156374d41f0cc70455b2f6b), +(56420,'Win','x64','WoW',0xa8e98c37f813d988c81256424a024ab0); /*!40000 ALTER TABLE `build_auth_key` ENABLE KEYS */; UNLOCK TABLES; @@ -1049,7 +1050,8 @@ INSERT INTO `build_info` VALUES (55460,4,4,0,NULL), (55613,4,4,0,NULL), (55639,4,4,0,NULL), -(56014,4,4,0,NULL); +(56014,4,4,0,NULL), +(56420,4,4,0,NULL); /*!40000 ALTER TABLE `build_info` ENABLE KEYS */; UNLOCK TABLES; @@ -2659,7 +2661,7 @@ CREATE TABLE `realmlist` ( `timezone` tinyint unsigned NOT NULL DEFAULT '0', `allowedSecurityLevel` tinyint unsigned NOT NULL DEFAULT '0', `population` float unsigned NOT NULL DEFAULT '0', - `gamebuild` int unsigned NOT NULL DEFAULT '56014', + `gamebuild` int unsigned NOT NULL DEFAULT '56420', `Region` tinyint unsigned NOT NULL DEFAULT '1', `Battlegroup` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), @@ -2674,7 +2676,7 @@ CREATE TABLE `realmlist` ( LOCK TABLES `realmlist` WRITE; /*!40000 ALTER TABLE `realmlist` DISABLE KEYS */; INSERT INTO `realmlist` VALUES -(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,56014,1,1); +(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,56420,1,1); /*!40000 ALTER TABLE `realmlist` ENABLE KEYS */; UNLOCK TABLES; @@ -3106,7 +3108,8 @@ INSERT INTO `updates` VALUES ('2024_08_09_00_auth.sql','3088FE594C953A1845B5A95A6F104A8EEF946D8C','RELEASED','2024-08-09 12:15:53',0), ('2024_08_18_00_auth.sql','5C1D0A3FE0245F4030FE446288AE533556EC6C9E','RELEASED','2024-08-18 20:36:28',0), ('2024_08_28_01_auth.sql','BC5D74553AF2D92606F55C1C462D2700FE73BD34','RELEASED','2024-08-29 04:45:54',0), -('2024_08_30_00_auth.sql','BD76942F1C29AAA2450E051E7CA552672B5E331B','RELEASED','2024-08-30 19:24:30',0); +('2024_08_30_00_auth.sql','BD76942F1C29AAA2450E051E7CA552672B5E331B','RELEASED','2024-08-30 19:24:30',0), +('2024_09_04_00_auth.sql','FE7307AD520718D7F71F1264B58AA0DC9E4BEFAE','RELEASED','2024-09-04 09:54:29',0); /*!40000 ALTER TABLE `updates` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/updates/auth/cata_classic/2024_09_04_00_auth.sql b/sql/updates/auth/cata_classic/2024_09_04_00_auth.sql new file mode 100644 index 00000000000..8cb9b95a1bf --- /dev/null +++ b/sql/updates/auth/cata_classic/2024_09_04_00_auth.sql @@ -0,0 +1,11 @@ +DELETE FROM `build_info` WHERE `build` IN (56420); +INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES +(56420,4,4,0,NULL); + +DELETE FROM `build_auth_key` WHERE `build`=56420 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW'; +INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES +(56420,'Win','x64','WoW',0xA8E98C37F813D988C81256424A024AB0); + +UPDATE `realmlist` SET `gamebuild`=56420 WHERE `gamebuild`=56014; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '56420'; |