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

chore: update PE+ to 0.6.2 (#4222)

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

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

代码差异

3 个文件 +6 -7
Modified package-lock.json +4 -4
@@ -17,7 +17,7 @@
17 17 "mongoose": "^9.6.2",
18 18 "morgan": "^1.10.0",
19 19 "undici": "^7.10.0",
20 "warframe-public-export-plus": "^0.6.0",
20 "warframe-public-export-plus": "^0.6.2",
21 21 "warframe-riven-info": "^0.1.2",
22 22 "winston": "^3.17.0",
23 23 "winston-daily-rotate-file": "^5.0.0",
@@ -4890,9 +4890,9 @@
4890 4890 }
4891 4891 },
4892 4892 "node_modules/warframe-public-export-plus": {
4893 "version": "0.6.0",
4894 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.6.0.tgz",
4895 "integrity": "sha512-Qps98xsKMzpB1NDol+IRkqZP3X87OtNetd2SO2h+t/+eKY3SkXC47qj8pkQjmfepavXZbECzq2WWoqMbIJh5sA=="
4893 "version": "0.6.2",
4894 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.6.2.tgz",
4895 "integrity": "sha512-eyfJJ4H9dtN03vGTvHwDBJh5Gr6lC/OCN7K8GdSjT0MlyuwwglyYw8gvQU9lwkS3kNY2eClhG86Xe3Y625KbYg=="
4896 4896 },
4897 4897 "node_modules/warframe-riven-info": {
4898 4898 "version": "0.1.2",
Modified package.json +1 -1
@@ -37,7 +37,7 @@
37 37 "mongoose": "^9.6.2",
38 38 "morgan": "^1.10.0",
39 39 "undici": "^7.10.0",
40 "warframe-public-export-plus": "^0.6.0",
40 "warframe-public-export-plus": "^0.6.2",
41 41 "warframe-riven-info": "^0.1.2",
42 42 "winston": "^3.17.0",
43 43 "winston-daily-rotate-file": "^5.0.0",
Modified src/services/worldStateService.ts +1 -2
@@ -755,11 +755,10 @@ const validateSortieSeed = (seed: number, variants: ISortieMission[]): boolean =
755 755 if (variant.missionType != "MT_ASSASSINATION") {
756 756 const tileset = ExportTilesets[variant.tileset];
757 757 let missionPermutation = tileset.missions[variant.missionType];
758 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
759 758 if (!missionPermutation) {
760 759 const options = SORTIE_FALLBACK_MISSION_TYPES.filter(missionType => missionType in tileset.missions);
761 760 const replacementType = options[rng.randomInt(0, options.length - 1)];
762 missionPermutation = tileset.missions[replacementType];
761 missionPermutation = tileset.missions[replacementType]!;
763 762 /*logger.debug(
764 763 `${variant.missionType} not supported by ${variant.tileset}; picking ${replacementType} instead`
765 764 );*/