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

fix: give MK1-Braton for old tutorial (#3008)

The old tutorial is supposed to give the MK1-Braton, but giveStartingGear was defaulting to the regular Braton. Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3008 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: VoltPrime <subsonicjackal@gmail.com> Co-committed-by: VoltPrime <subsonicjackal@gmail.com>

f50f4a92
VoltPrime <subsonicjackal@gmail.com>
提交于

代码差异

1 个文件 +7 -0
Modified src/controllers/api/giveStartingGearController.ts +7 -0
@@ -26,6 +26,13 @@ export const giveStartingGearGetController: RequestHandler = async (req, res) =>
26 26 ItemId: { $oid: "0" },
27 27 Configs: []
28 28 }
29 ],
30 LongGuns: [
31 {
32 ItemType: "/Lotus/Weapons/Tenno/Rifle/StartingRifle",
33 ItemId: { $oid: "0" },
34 Configs: []
35 }
29 36 ]
30 37 });
31 38 await inventory.save();