aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/base/auth_database.sql16
-rw-r--r--sql/updates/auth/cata_classic/2024_10_24_00_auth.sql17
2 files changed, 28 insertions, 5 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql
index cc54247dbbf..8835d5feab2 100644
--- a/sql/base/auth_database.sql
+++ b/sql/base/auth_database.sql
@@ -747,7 +747,11 @@ INSERT INTO `build_auth_key` VALUES
(56713,'Mac','A64','WoW',0x52EA30F5FC879526462F8FB65B9797AC),
(56713,'Mac','x64','WoW',0x0DFE481E53DF3B21DF98B8598E0CA674),
(56713,'Win','A64','WoW',0x7CD3F3C05BAA6B377202616A1D2C2504),
-(56713,'Win','x64','WoW',0x63D7153C3703C7E7FAB7C92F1BA7822C);
+(56713,'Win','x64','WoW',0x63D7153C3703C7E7FAB7C92F1BA7822C),
+(57244,'Mac','A64','WoW',0x4DC6904ECDDB8D45209C9A1A1EAFDF34),
+(57244,'Mac','x64','WoW',0x0D662EAB1F2F0EC74F6D11F167F378B6),
+(57244,'Win','A64','WoW',0x9A849BAEEC89BDBF3ADE5FEDDBB27A74),
+(57244,'Win','x64','WoW',0xF972E54BD89E8AD83420C6E3DEFA267F);
/*!40000 ALTER TABLE `build_auth_key` ENABLE KEYS */;
UNLOCK TABLES;
@@ -1061,7 +1065,8 @@ INSERT INTO `build_info` VALUES
(56014,4,4,0,NULL),
(56420,4,4,0,NULL),
(56489,4,4,0,NULL),
-(56713,4,4,0,NULL);
+(56713,4,4,0,NULL),
+(57244,4,4,0,NULL);
/*!40000 ALTER TABLE `build_info` ENABLE KEYS */;
UNLOCK TABLES;
@@ -2671,7 +2676,7 @@ CREATE TABLE `realmlist` (
`timezone` tinyint unsigned NOT NULL DEFAULT '0',
`allowedSecurityLevel` tinyint unsigned NOT NULL DEFAULT '0',
`population` float NOT NULL DEFAULT '0',
- `gamebuild` int unsigned NOT NULL DEFAULT '56713',
+ `gamebuild` int unsigned NOT NULL DEFAULT '57244',
`Region` tinyint unsigned NOT NULL DEFAULT '1',
`Battlegroup` tinyint unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
@@ -2686,7 +2691,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,56713,1,1);
+(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,57244,1,1);
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
UNLOCK TABLES;
@@ -3123,7 +3128,8 @@ INSERT INTO `updates` VALUES
('2024_09_17_00_auth.sql','CC4FD75037646F91F05FB8D7A9BE836A76B8F668','RELEASED','2024-09-17 01:41:19',0),
('2024_09_17_01_auth.sql','C239FE5AFC0FF4F6D5C1E03131D869A2B2988B3C','RELEASED','2024-09-17 10:21:50',0),
('2024_09_24_00_auth.sql','E20C474C16DACB9A10180F58D824B91378DABC32','RELEASED','2024-09-24 12:19:13',0),
-('2024_09_26_00_auth.sql','E37C3997FD7851EA360774AC568912846C448272','RELEASED','2024-09-26 18:27:26',0);
+('2024_09_26_00_auth.sql','E37C3997FD7851EA360774AC568912846C448272','RELEASED','2024-09-26 18:27:26',0),
+('2024_10_24_00_auth.sql','B6DEDDEA09595E6E9520D076F02FFDF7ED615517','RELEASED','2024-10-24 16:16:03',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;
diff --git a/sql/updates/auth/cata_classic/2024_10_24_00_auth.sql b/sql/updates/auth/cata_classic/2024_10_24_00_auth.sql
new file mode 100644
index 00000000000..9f01d9192bb
--- /dev/null
+++ b/sql/updates/auth/cata_classic/2024_10_24_00_auth.sql
@@ -0,0 +1,17 @@
+DELETE FROM `build_info` WHERE `build` IN (57244);
+INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES
+(57244,4,4,0,NULL);
+
+DELETE FROM `build_auth_key` WHERE `build`=57244 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=57244 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=57244 AND `platform`='Win' AND `arch`='A64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=57244 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW';
+INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES
+(57244,'Mac','A64','WoW',0x4DC6904ECDDB8D45209C9A1A1EAFDF34),
+(57244,'Mac','x64','WoW',0x0D662EAB1F2F0EC74F6D11F167F378B6),
+(57244,'Win','A64','WoW',0x9A849BAEEC89BDBF3ADE5FEDDBB27A74),
+(57244,'Win','x64','WoW',0xF972E54BD89E8AD83420C6E3DEFA267F);
+
+UPDATE `realmlist` SET `gamebuild`=57244 WHERE `gamebuild`=56713;
+
+ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '57244';