feat: Ship Customizations, Personal Rooms (Orbiter, Apartment) #132

Merged
OrdisPrime merged 4 commits from ship-customizations into main 2024-02-18 04:58:43 -08:00
Showing only changes of commit 0332e37fc0 - Show all commits

View File

@ -7,13 +7,7 @@ export const createShip = async (accountOwnerId: Types.ObjectId) => {
try { try {
const ship = new Ship({ const ship = new Ship({
ItemType: "/Lotus/Types/Items/Ships/DefaultShip", ItemType: "/Lotus/Types/Items/Ships/DefaultShip",
ShipOwnerId: accountOwnerId, ShipOwnerId: accountOwnerId
ShipInteriorColors: {
t0: 3828063,
t1: 2502747
},
ShipAttachments: { HOOD_ORNAMENT: "" },
SkinFlavourItem: "/Lotus/Upgrades/Skins/Liset/LisetSkinFlavourItemDefault"
}); });
const newShip = await ship.save(); const newShip = await ship.save();
return newShip._id; return newShip._id;