Remove unused function handleSelectOrPlacePlayerStart in App.tsx

This commit is contained in:
2026-03-31 04:25:24 +02:00
parent 3175970272
commit 76c52c82d2

View File

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