update to 8.5.0

This commit is contained in:
Naruse
2025-11-07 23:28:54 +08:00
parent a134e931ae
commit 7baf218f4e
7 changed files with 861 additions and 26 deletions

View File

@@ -14,11 +14,11 @@ public class QueryDispatchController : ControllerBase
{
var version = HotfixContainer.ExtractVersionNumber(query.Version);
var hotfix_version = query.Version!;
if (!ConfigManager.Hotfix.Hotfixes.ContainsKey(hotfix_version))
{
logger.Warn($"Client sent requesting unsupported game version: {hotfix_version}");
return BadRequest();
}
//if (!ConfigManager.Hotfix.Hotfixes.ContainsKey(hotfix_version))
//{
// logger.Warn($"Client sent requesting unsupported game version: {hotfix_version}");
// return BadRequest();
//}
var response = new QueryDispatchResponse
{