XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

feat: place conclave console decoration by default for new accounts (#2019)

Closes #1908 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2019 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

29b54b52
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +13 -2
Modified src/models/personalRoomsModel.ts +13 -2
@@ -13,7 +13,7 @@ import {
13 13 IPlantDatabase,
14 14 IPlantClient
15 15 } from "@/src/types/shipTypes";
16 import { Schema, model } from "mongoose";
16 import { Schema, Types, model } from "mongoose";
17 17
18 18 export const pictureFrameInfoSchema = new Schema<IPictureFrameInfo>(
19 19 {
@@ -153,7 +153,18 @@ const orbiterDefault: IOrbiter = {
153 153 Features: ["/Lotus/Types/Items/ShipFeatureItems/EarthNavigationFeatureItem"], //TODO: potentially remove after missionstarting gear
154 154 Rooms: [
155 155 { Name: "AlchemyRoom", MaxCapacity: 1600 },
156 { Name: "BridgeRoom", MaxCapacity: 1600 },
156 {
157 Name: "BridgeRoom",
158 MaxCapacity: 1600,
159 PlacedDecos: [
160 {
161 Type: "/Lotus/Objects/Tenno/Props/Ships/LandCraftPlayerProps/ConclaveConsolePlayerShipDeco",
162 Pos: [-30.082, -3.95954, -16.7913],
163 Rot: [-135, 0, 0],
164 _id: undefined as unknown as Types.ObjectId
165 }
166 ]
167 },
157 168 { Name: "LisetRoom", MaxCapacity: 1000 },
158 169 { Name: "OperatorChamberRoom", MaxCapacity: 1600 },
159 170 { Name: "OutsideRoom", MaxCapacity: 1600 },