fix: re-enable giving ship features and mission rewards from Vors Prize after skipTutorial #996

Merged
OrdisPrime merged 2 commits from shipFeaturesSkipTutorial into main 2025-02-23 12:22:54 -08:00
Showing only changes of commit 84d90d3186 - Show all commits

View File

@ -23,8 +23,8 @@ export const createAccount = async (accountData: IDatabaseAccount): Promise<IDat
await account.save();
const loadoutId = await createLoadout(account._id);
const shipId = await createShip(account._id);
await createPersonalRooms(account._id, shipId);
await createInventory(account._id, { loadOutPresetId: loadoutId, ship: shipId });
await createPersonalRooms(account._id, shipId);
await createStats(account._id.toString());
return account.toJSON();
} catch (error) {