Skip to content

Commit

Permalink
Core: Updated to 10.2.6.53989
Browse files Browse the repository at this point in the history
  • Loading branch information
Shauren committed Mar 29, 2024
1 parent c2ac371 commit d8a82ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 6 additions & 4 deletions sql/base/auth_database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,8 @@ INSERT INTO `build_info` VALUES
(53584,10,2,5,NULL,NULL,'CDD7A93659A03460B5A6CE1C4ACE5554',NULL,NULL,NULL),
(53840,10,2,6,NULL,NULL,'AC97D745C60DD3DC5F973E55C0E3649E',NULL,NULL,NULL),
(53877,10,2,6,NULL,NULL,'16320F95B63846A2276E1D2612C34AD4',NULL,NULL,NULL),
(53913,10,2,6,NULL,NULL,'475680680B2192EBCF6744D14F755199',NULL,NULL,NULL);
(53913,10,2,6,NULL,NULL,'475680680B2192EBCF6744D14F755199',NULL,NULL,NULL),
(53989,10,2,6,NULL,NULL,'3AEB90ACB9E18B88BA1021F52D51B857',NULL,NULL,NULL);
/*!40000 ALTER TABLE `build_info` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down Expand Up @@ -2379,7 +2380,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 '53913',
`gamebuild` int unsigned NOT NULL DEFAULT '53989',
`Region` tinyint unsigned NOT NULL DEFAULT '1',
`Battlegroup` tinyint unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
Expand All @@ -2394,7 +2395,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,53913,1,1);
(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,53989,1,1);
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down Expand Up @@ -2810,7 +2811,8 @@ INSERT INTO `updates` VALUES
('2024_03_05_00_auth.sql','61341FABF7243FBCBB6BDE35CECE1F7DFD988F26','RELEASED','2024-03-05 20:43:51',0),
('2024_03_21_00_auth.sql','5D4F3479B0F4E16E59B1CC9EB21E5CE5531555B9','RELEASED','2024-03-21 16:56:21',0),
('2024_03_22_00_auth.sql','4F184E4BF361195C560A569E57A6FF6429077849','RELEASED','2024-03-22 20:29:29',0),
('2024_03_25_00_auth.sql','B4EF57DE84195E0B886B070ACE58B66853FFC52C','RELEASED','2024-03-25 23:20:57',0);
('2024_03_25_00_auth.sql','B4EF57DE84195E0B886B070ACE58B66853FFC52C','RELEASED','2024-03-25 23:20:57',0),
('2024_03_29_00_auth.sql','F1F62C913F5DFB277DB3D1258022EC334EFC419B','RELEASED','2024-03-29 10:49:54',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down
7 changes: 7 additions & 0 deletions sql/updates/auth/master/2024_03_29_00_auth.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
DELETE FROM `build_info` WHERE `build`=53989;
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
(53989,10,2,6,NULL,NULL,'3AEB90ACB9E18B88BA1021F52D51B857',NULL,NULL,NULL);

UPDATE `realmlist` SET `gamebuild`=53989 WHERE `gamebuild`=53913;

ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '53989';

0 comments on commit d8a82ab

Please sign in to comment.