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: legacy Dual Zoren recipe (#4366)

Closes #4363 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/4366 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>

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

代码差异

1 个文件 +19 -0
Modified src/services/itemDataService.ts +19 -0
@@ -2560,6 +2560,25 @@ export const getRecipe = (uniqueName: string, buildLabel: string): IRecipe | und
2560 2560 buildTime: 259200
2561 2561 };
2562 2562 }
2563 } else if (uniqueName == "/Lotus/Types/Recipes/Weapons/DualAxeBlueprint") {
2564 // Undocumented change, might be U9.1.0
2565 if (version_compare(buildLabel, gameToBuildVersion["9.1.2"]) < 0) {
2566 data = {
2567 ...data,
2568 ingredients: [
2569 data.ingredients[0],
2570 data.ingredients[1],
2571 {
2572 ItemType: "/Lotus/Types/Items/MiscItems/Ferrite",
2573 ItemCount: 600
2574 },
2575 {
2576 ItemType: "/Lotus/Types/Items/MiscItems/AlloyPlate",
2577 ItemCount: 80
2578 }
2579 ]
2580 };
2581 }
2563 2582 }
2564 2583
2565 2584 if (uniqueName.startsWith("/Lotus/StoreItems/Types/Recipes/EidolonRecipes/Arcanes/")) {