exorcist-evangeline/GameUpdate.bat
2025-10-10 13:21:13 -05:00

14 lines
No EOL
199 B
Batchfile

@echo off
setlocal
REM Copy patch.bat to a new file
copy dazedpatch\patch.bat patch2.bat
REM Run the new file
call patch2.bat
REM Delete the new file
del patch2.bat
endlocal
@echo on