diff --git a/README.md b/README.md index daeadecb8..19b27f4cf 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ CypherCore is an open source server project for World of Warcraft written in C#. -The current support game version is: 8.2.5.32722 +The current support game version is: 8.2.5.32750 ### Prerequisites * Visual Studio 2019 with netcore 3.1 [Download](https://www.visualstudio.com/downloads/) diff --git a/sql/updates/auth/master/2019_12_10_00_auth.sql b/sql/updates/auth/master/2019_12_10_00_auth.sql new file mode 100644 index 000000000..cafae5c9e --- /dev/null +++ b/sql/updates/auth/master/2019_12_10_00_auth.sql @@ -0,0 +1,7 @@ +DELETE FROM `build_info` WHERE `build`=32750; +INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES +(32750,8,2,5,NULL,NULL,'C5CB669F5A5B237D1355430877173207',NULL,NULL,NULL); + +UPDATE `realmlist` SET `gamebuild`=32750 WHERE `gamebuild`=32722; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '32750';