We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05f0511 commit b6d5e8dCopy full SHA for b6d5e8d
client/src/game-client.ts
@@ -168,8 +168,8 @@ export class GameClient {
168
this.scene.add(pole);
169
this.worldObjects.push(pole);
170
171
- // Load and place bed next to house (to the right side, 200 units from house center)
172
- WorldObjectFactory.loadBed(-300, -400)
+ // Load and place bed at (2500, 2500)
+ WorldObjectFactory.loadBed(2500, 2500)
173
.then((bed) => {
174
if (this.scene) {
175
this.scene.add(bed);
0 commit comments