From ce36de7e4f2f66fffb8a0b96d5c8984db3a91ed0 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Thu, 21 May 2026 14:09:00 +0900 Subject: [PATCH] Update steelRack.ts --- packages/frontend/src/world/room/objects/steelRack.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/world/room/objects/steelRack.ts b/packages/frontend/src/world/room/objects/steelRack.ts index 493e77b7cb..c7d4d165bf 100644 --- a/packages/frontend/src/world/room/objects/steelRack.ts +++ b/packages/frontend/src/world/room/objects/steelRack.ts @@ -149,7 +149,7 @@ const base = defineObjectClass({ clonedShelfMeshes.length = 0; for (let i = 0; i < options.numberOfShelfs - 1; i++) { - const clonedShelf = shelf.clone(`__X_SHELF_CLONE_${i}__`, shelf.parent); + const clonedShelf = shelf.clone('', shelf.parent); clonedShelf.isVisible = true; clonedShelfMeshes.push(clonedShelf); } @@ -166,7 +166,7 @@ const base = defineObjectClass({ clonedPoleMeshes.length = 0; for (let i = 1; i < options.height; i++) { - const clonedPole = pole.clone(`__X_POLE_CLONE_${i}__`); + const clonedPole = pole.clone(''); clonedPole.position.y = (i * cm(30)) / Math.abs(scale.y); clonedPoleMeshes.push(clonedPole); }