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)}`);