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

chore: bump minimum required version for invasions (#3556)

Closes #3555 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3556 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

92ee798b
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +2 -3
Modified src/services/worldStateService.ts +2 -3
@@ -3746,9 +3746,8 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
3746 3746 });
3747 3747 }
3748 3748
3749 if (!buildLabel || version_compare(buildLabel, gameToBuildVersion["17.7.1"]) >= 0) {
3750 // (lowest known version that recognises all reward types ^^^^^^)
3751
3749 // Sheev parts were added in 19.6.3, so versions prior to that may take too kindly to seeing invasions.
3750 if (!buildLabel || version_compare(buildLabel, gameToBuildVersion["19.5.0"]) > 0) {
3752 3751 // Rough outline of dynamic invasions.
3753 3752 // TODO: Invasions chains, e.g. an infestation mission would soon lead to other nodes on that planet also having an infestation invasion.
3754 3753 // TODO: Grineer/Corpus to fund their death stars with each invasion win.