ServerStart.bat endless loops install for forge-1.12.2-14.23.5.2854 (and possibly others)
wideblaze opened this issue ยท 1 comments
serverstart.log:
https://pastebin.com/jUa151tq
forge server (at least in forge-1.12.2-14.23.5.2854) does not contain universal in jar name:
https://prnt.sc/sud5b0
thus fails check on line 472 and executes INSTALLSTART
work around:
removing "universal*" from line 472
IF NOT EXIST "%~dp0forge%MC_SERVER_FORGEVER%universal.jar" (
to
IF NOT EXIST "%~dp0forge%MC_SERVER_FORGEVER%*.jar" (
fixes endless loop issue
thank you to my discord users: jellejurre for debugging/work around ,C-Moon for logs, and Zero for testing fix.