From 7e0081f96f414a1920f546b4547447daefa48e7f Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 2 May 2026 04:14:49 +0200 Subject: [PATCH] Exclude foliage tools from terrain sculpt brush list --- src/app/App.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 4a239e62..2e5424ca 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -837,7 +837,10 @@ function formatPlayerStartGamepadCameraLookBindingLabel( const STARTER_MATERIAL_ORDER = new Map( STARTER_MATERIAL_LIBRARY.map((material, index) => [material.id, index]) ); -const TERRAIN_SCULPT_BRUSH_TOOLS: Exclude[] = [ +const TERRAIN_SCULPT_BRUSH_TOOLS: Exclude< + TerrainBrushTool, + "paint" | "foliagePaint" | "foliageErase" +>[] = [ "raise", "lower", "smooth",