Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ServerStart.bat endless loops install for forge-1.12.2-14.23.5.2854 (and possibly others) - fix #73

Open
wideblaze opened this issue Jun 5, 2020 · 2 comments

Comments

@wideblaze
Copy link

wideblaze commented Jun 5, 2020

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 "%~dp0*forge*%MC_SERVER_FORGEVER%*universal*.jar" (

to

IF NOT EXIST "%~dp0*forge*%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.

@wideblaze
Copy link
Author

likely related issues:: #67 and #70

@YoYoK3nny
Copy link

work around:
removing "universal*" from line 472
IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*universal*.jar" (

to

IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%*.jar" (

fixes endless loop issue

Remove the last asterisk, otherwise the check matches against the installer jar:
IF NOT EXIST "%~dp0*forge*%MC_SERVER_FORGEVER%.jar" (

This workaround is fine for newer versions, but not older versions (switches the target of the install-loop to older versions)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants