XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

fixup

8217c812
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +4 -4
Modified src/services/worldStateService.ts +4 -4
@@ -2627,13 +2627,13 @@ export const getWorldState = (
2627 2627 ];
2628 2628
2629 2629 const fallbackYear =
2630 buildVersionInt >= gameToBuildVersionInt["43.0.0"]
2630 buildVersion >= gameToBuildVersionInt["43.0.0"]
2631 2631 ? 4
2632 : buildVersionInt >= gameToBuildVersionInt["39.0.0"]
2632 : buildVersion >= gameToBuildVersionInt["39.0.0"]
2633 2633 ? 3
2634 : buildVersionInt >= gameToBuildVersionInt["36.1.2"]
2634 : buildVersion >= gameToBuildVersionInt["36.1.2"]
2635 2635 ? 2
2636 : buildVersionInt >= gameToBuildVersionInt["33.6.0"]
2636 : buildVersion >= gameToBuildVersionInt["33.6.0"]
2637 2637 ? 1
2638 2638 : 0;
2639 2639