rv
All checks were successful
Build / build (18) (push) Successful in 37s
Build / build (20) (push) Successful in 1m3s
Build / build (22) (push) Successful in 1m12s
Build / build (18) (pull_request) Successful in 40s
Build / build (20) (pull_request) Successful in 1m1s
Build / build (22) (pull_request) Successful in 1m15s

This commit is contained in:
OrdisPrime 2025-02-23 21:20:20 +01:00
parent c9b34a30e0
commit 84d90d3186

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) {