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: add minBuildVersion to steel path rewards email (#4020)

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

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

代码差异

1 个文件 +3 -2
Modified src/services/inventoryService.ts +3 -2
@@ -103,7 +103,7 @@ import { getNightwaveSyndicateTag, getWorldState } from "./worldStateService.ts"
103 103 import type { ICalendarSeason } from "../types/worldStateTypes.ts";
104 104 import type { INemesisProfile } from "../helpers/nemesisHelpers.ts";
105 105 import { generateNemesisProfile } from "../helpers/nemesisHelpers.ts";
106 import type { TAccountDocument } from "./loginService.ts";
106 import { buildVersionToInt, type TAccountDocument } from "./loginService.ts";
107 107 import { KAHL_EPOCH, unixTimesInMs } from "../constants/timeConstants.ts";
108 108 import { addString } from "../helpers/stringHelpers.ts";
109 109 import type {
@@ -3367,7 +3367,8 @@ export const ensureUserHasSteelPathRewards = async (
3367 3367 attVisualOnly: true,
3368 3368 sub: "/Lotus/Language/Inbox/HardModeRewardMsgTitle",
3369 3369 icon: "/Lotus/Interface/Icons/Npcs/Teshin.png",
3370 highPriority: true
3370 highPriority: true,
3371 minBuildVersion: buildVersionToInt("2020.07.08.00.00") // U28.1 introduced Steel Path
3371 3372 }
3372 3373 ]);
3373 3374 }