返回提交历史
Modified
src/services/worldStateService.ts
+4
-4
XFEstudio/XFESpaceNinjaServer
fixup
8217c812
代码差异
1 个文件
+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