-
-
Notifications
You must be signed in to change notification settings - Fork 303
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
Remove -rcon arg statement #473
Conversation
-rcon is no longer needed as of the 1.5.1 fix, seems like it was bugged in 1.5.0 and not pulling correctly from config
I'd recommend that you take this one. # fix bug for v0.1.5.0 only.
if [ "${TARGET_MANIFEST_ID}" = "3750364703337203431" -a "${RCON_ENABLED,,}" = true ]; then
STARTCOMMAND+=("-rcon")
fi |
I don't disagree, but with the container automatically updating the game from steam is it viable to put in a legacy fix? Ie. I can't think of a situation currently where you'd run palworld-server-docker:latest and not have palworld server updated as well. |
Don't we have the feature to trick steamcmd into downloading an older version of the server with the |
The reason I recommended it is because of this feature. |
However, I think v0.1.5.0 has almost no use other than analyzing save data. |
Ahh, see I had no idea about that feature. We love productive PR comment conversations. I don't mind adding it, but yeah we're basically saying "okay sure, if you wanna rollback to a buggy game version, that's all you, bud." If one person finds value in a change then there's bound to be others as well. :) |
@MusclePr I'm a little unfamiliar with '-a' syntax, does it short circuit or eval both expressions? |
That's a great point! # fix bug for v0.1.5.0 only.
if [ "${TARGET_MANIFEST_ID}" = "3750364703337203431" ] && [ "${RCON_ENABLED,,}" = true ]; then
STARTCOMMAND+=("-rcon")
fi |
All good! I had already coded it for && just was checking with you first. |
definitely wrong commit lol |
Remove -rcon arg statement
-rcon is no longer needed as of the 1.5.1 fix, seems like it was bugged in 1.5.0 and not pulling correctly from config
Context
Removal of excess statement from 1.5.0 bug
Choices
It's just boilerplate now since official fix
Test instructions
Checklist before requesting a review