From 76c52c82d216d9f27e20e1b8a9daecdba34c42c3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 04:25:24 +0200 Subject: [PATCH] Remove unused function handleSelectOrPlacePlayerStart in App.tsx --- src/app/App.tsx | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index b958e75b..629696b6 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -840,21 +840,6 @@ export function App({ store, initialStatusMessage }: AppProps) { ); }; - const handleSelectOrPlacePlayerStart = () => { - if (primaryPlayerStart === null) { - applyPlayerStartChange(); - return; - } - - applySelection( - { - kind: "entities", - ids: [primaryPlayerStart.id] - }, - "runner" - ); - }; - const handleEnterPlayMode = () => { if (blockingDiagnostics.length > 0) { setStatusMessage(`Run mode blocked: ${formatSceneDiagnosticSummary(blockingDiagnostics)}`);