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: handle purchasing decree from acrithis (#2124)

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

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

代码差异

1 个文件 +4 -0
Modified src/services/inventoryService.ts +4 -0
@@ -722,6 +722,10 @@ export const addItem = async (
722 722 }
723 723 break;
724 724
725 case "Boons":
726 // Can purchase /Lotus/Upgrades/Boons/DuviriVendorBoonItem from Acrithis, doesn't need to be added to inventory.
727 return {};
728
725 729 case "Stickers":
726 730 {
727 731 const entry = inventory.RawUpgrades.find(x => x.ItemType == typeName);