From f50f4a924b53b6099e477dbe3fc58da8234cb773 Mon Sep 17 00:00:00 2001 From: VoltPrime Date: Fri, 7 Nov 2025 00:52:32 -0800 Subject: [PATCH] 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 Co-committed-by: VoltPrime --- src/controllers/api/giveStartingGearController.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/controllers/api/giveStartingGearController.ts b/src/controllers/api/giveStartingGearController.ts index 895ffec3..6dcba34b 100644 --- a/src/controllers/api/giveStartingGearController.ts +++ b/src/controllers/api/giveStartingGearController.ts @@ -26,6 +26,13 @@ export const giveStartingGearGetController: RequestHandler = async (req, res) => ItemId: { $oid: "0" }, Configs: [] } + ], + LongGuns: [ + { + ItemType: "/Lotus/Weapons/Tenno/Rifle/StartingRifle", + ItemId: { $oid: "0" }, + Configs: [] + } ] }); await inventory.save();