返回提交历史
Modified
src/controllers/api/giveStartingGearController.ts
+7
-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
代码差异
1 个文件
+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();