@echo off
setlocal EnableExtensions
cd /d "%~dp0"
title LegacyWorld
if exist "%~dp0LegacyWorldLauncher.exe" (
  start "" "%~dp0LegacyWorldLauncher.exe"
  exit /b 0
)
echo LegacyWorldLauncher.exe not found.
pause
exit /b 1
