Core: Updated to 6.2.4

* Rewrite bnetserver for new authentication protocol
This commit is contained in:
Shauren
2016-03-28 17:12:57 +02:00
parent 619669c620
commit dde620c402
85 changed files with 9688 additions and 4976 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,21 @@
DROP TABLE IF EXISTS `battlenet_components`;
DROP TABLE IF EXISTS `battlenet_modules`;
DROP TABLE IF EXISTS `account_last_played_character`;
CREATE TABLE `account_last_played_character` (
`accountId` int(10) unsigned NOT NULL,
`region` tinyint(3) unsigned NOT NULL,
`battlegroup` tinyint(3) unsigned NOT NULL,
`realmId` int(10) unsigned,
`characterName` varchar(12),
`characterGUID` bigint(20) unsigned,
`lastPlayedTime` int(10) unsigned,
PRIMARY KEY(`accountId`,`region`,`battlegroup`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `battlenet_accounts`
DROP `s`,
DROP `v`,
DROP `sessionKey`;
UPDATE `realmlist` SET `gamebuild`=21355 WHERE `gamebuild`=20726;