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

fix: add InitialStartDate to PrimeVaultTrader (#2419)

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

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

代码差异

1 个文件 +2 -1
Modified src/services/worldStateService.ts +2 -1
@@ -1476,9 +1476,10 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
1476 1476 const pt: IPrimeVaultTrader = {
1477 1477 _id: { $oid: ((weekStart / 1000) & 0xffffffff).toString(16).padStart(8, "0") + "c36af423770eaa97" },
1478 1478 Activation: { $date: { $numberLong: weekStart.toString() } },
1479 Expiry: { $date: { $numberLong: weekEnd.toString() } },
1479 InitialStartDate: { $date: { $numberLong: "1662738144266" } },
1480 1480 Node: "TradeHUB1",
1481 1481 Manifest: [],
1482 Expiry: { $date: { $numberLong: weekEnd.toString() } },
1482 1483 EvergreenManifest: varzia.evergreen,
1483 1484 ScheduleInfo: []
1484 1485 };