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: pre-U42 crafting times for starter frames (#4202)

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

c104e838
AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
提交于

代码差异

1 个文件 +21 -0
Modified src/services/itemDataService.ts +21 -0
@@ -2200,6 +2200,27 @@ export const getRecipe = (uniqueName: string, buildLabel: string): IRecipe | und
2200 2200 ]
2201 2201 };
2202 2202 }
2203 } else if (uniqueName == "/Lotus/Types/Recipes/WarframeRecipes/ExcaliburBlueprint") {
2204 if (version_compare(buildLabel, gameToBuildVersion["42.0.0"]) < 0) {
2205 data = {
2206 ...data,
2207 buildTime: 259200
2208 };
2209 }
2210 } else if (uniqueName == "/Lotus/Types/Recipes/WarframeRecipes/MagBlueprint") {
2211 if (version_compare(buildLabel, gameToBuildVersion["42.0.0"]) < 0) {
2212 data = {
2213 ...data,
2214 buildTime: 259200
2215 };
2216 }
2217 } else if (uniqueName == "/Lotus/Types/Recipes/WarframeRecipes/VOLTBlueprint") {
2218 if (version_compare(buildLabel, gameToBuildVersion["42.0.0"]) < 0) {
2219 data = {
2220 ...data,
2221 buildTime: 259200
2222 };
2223 }
2203 2224 }
2204 2225
2205 2226 if (uniqueName.startsWith("/Lotus/StoreItems/Types/Recipes/EidolonRecipes/Arcanes/")) {