From a33c2ef726b7025951da87a4da43aef2a6de8bdd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 30 Apr 2026 00:11:59 +0200 Subject: [PATCH] Update brush face replacement to include climbable status --- src/commands/brush-command-helpers.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/brush-command-helpers.ts b/src/commands/brush-command-helpers.ts index cfbb29eb..33931263 100644 --- a/src/commands/brush-command-helpers.ts +++ b/src/commands/brush-command-helpers.ts @@ -102,7 +102,8 @@ export function replaceBoxBrushFace(document: SceneDocument, brushId: string, fa ...brush.faces, [faceId]: { materialId: face.materialId, - uv: cloneFaceUvState(face.uv) + uv: cloneFaceUvState(face.uv), + climbable: face.climbable } } as typeof brush.faces, geometry: cloneBrushGeometry(brush.geometry)