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

SpaceNinjaServer

A simple server for a small space ninja game

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

XFEstudio/SpaceNinjaServer

fixup: endless xp choices incorrect for first 5 minutes

3e0c6325
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified src/services/worldStateService.ts +1 -1
@@ -4316,7 +4316,7 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
4316 4316 worldState.EndlessXpSchedule.push({
4317 4317 Activation: { $date: { $numberLong: (weekStart + 604800000).toString() } },
4318 4318 Expiry: { $date: { $numberLong: (weekEnd + 604800000).toString() } },
4319 CategoryChoices: getEndlessXpChoices(week)
4319 CategoryChoices: getEndlessXpChoices(week + 1)
4320 4320 });
4321 4321 }
4322 4322 } else {