aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/base/auth_database.sql16
-rw-r--r--sql/updates/auth/cata_classic/2024_09_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 73cd90bc8f9..b8bba9c2ed1 100644
--- a/sql/base/auth_database.sql
+++ b/sql/base/auth_database.sql
@@ -743,7 +743,11 @@ INSERT INTO `build_auth_key` VALUES
(56489,'Win','x64','WoW',0xa3fc116bb68fa279dbb66b4024305d99),
(56489,'Win','A64','WoW',0xc0fa9cbf98c21ed7f062ab8ed5a34b50),
(56489,'Mac','x64','WoW',0x482a7a1dce05f878626f1b1d52bfa80b),
-(56489,'Mac','A64','WoW',0x6a8c974bcaf78d6e2032e3b5776d89fa);
+(56489,'Mac','A64','WoW',0x6a8c974bcaf78d6e2032e3b5776d89fa),
+(56713,'Mac','A64','WoW',0x52EA30F5FC879526462F8FB65B9797AC),
+(56713,'Mac','x64','WoW',0x0DFE481E53DF3B21DF98B8598E0CA674),
+(56713,'Win','A64','WoW',0x7CD3F3C05BAA6B377202616A1D2C2504),
+(56713,'Win','x64','WoW',0x63D7153C3703C7E7FAB7C92F1BA7822C);
/*!40000 ALTER TABLE `build_auth_key` ENABLE KEYS */;
UNLOCK TABLES;
@@ -1056,7 +1060,8 @@ INSERT INTO `build_info` VALUES
(55639,4,4,0,NULL),
(56014,4,4,0,NULL),
(56420,4,4,0,NULL),
-(56489,4,4,0,NULL);
+(56489,4,4,0,NULL),
+(56713,4,4,0,NULL);
/*!40000 ALTER TABLE `build_info` ENABLE KEYS */;
UNLOCK TABLES;
@@ -2666,7 +2671,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 '56489',
+ `gamebuild` int unsigned NOT NULL DEFAULT '56713',
`Region` tinyint unsigned NOT NULL DEFAULT '1',
`Battlegroup` tinyint unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
@@ -2681,7 +2686,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,56489,1,1);
+(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,56713,1,1);
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
UNLOCK TABLES;
@@ -3116,7 +3121,8 @@ INSERT INTO `updates` VALUES
('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),
('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_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);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;
diff --git a/sql/updates/auth/cata_classic/2024_09_24_00_auth.sql b/sql/updates/auth/cata_classic/2024_09_24_00_auth.sql
new file mode 100644
index 00000000000..4325e0a64ab
--- /dev/null
+++ b/sql/updates/auth/cata_classic/2024_09_24_00_auth.sql
@@ -0,0 +1,17 @@
+DELETE FROM `build_info` WHERE `build` IN (56713);
+INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES
+(56713,4,4,0,NULL);
+
+DELETE FROM `build_auth_key` WHERE `build`=56713 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=56713 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=56713 AND `platform`='Win' AND `arch`='A64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=56713 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW';
+INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES
+(56713,'Mac','A64','WoW',0x52EA30F5FC879526462F8FB65B9797AC),
+(56713,'Mac','x64','WoW',0x0DFE481E53DF3B21DF98B8598E0CA674),
+(56713,'Win','A64','WoW',0x7CD3F3C05BAA6B377202616A1D2C2504),
+(56713,'Win','x64','WoW',0x63D7153C3703C7E7FAB7C92F1BA7822C);
+
+UPDATE `realmlist` SET `gamebuild`=56713 WHERE `gamebuild`=56489;
+
+ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '56713';