From 253e8a17f22a9ff614b371a0dad8acb9326e786f Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 2 May 2026 04:15:25 +0200 Subject: [PATCH] Update status message for foliage painting tools --- src/app/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 87f20ca9..c64d070e 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -20573,6 +20573,9 @@ export function App({ store, draftStorage = null, initialStatusMessage }: AppPro ? "No terrain brush is armed. Existing selection and transforms stay unchanged." : armedTerrainBrushTool === "paint" ? `Paint is armed for ${getTerrainLabelById(selectedTerrain.id, terrainList)} on ${getTerrainLayerLabel(resolvedTerrainPaintLayerIndex).toLowerCase()}.` + : armedTerrainBrushTool === "foliagePaint" || + armedTerrainBrushTool === "foliageErase" + ? `${getTerrainBrushToolLabel(armedTerrainBrushTool)} is armed for ${getTerrainLabelById(selectedTerrain.id, terrainList)} on ${activeFoliageLayer?.name ?? "no foliage layer"}.` : `${getTerrainBrushToolLabel(armedTerrainBrushTool)} is armed for ${getTerrainLabelById(selectedTerrain.id, terrainList)}. Click the active tool again to disarm it.`}