-
-
Notifications
You must be signed in to change notification settings - Fork 229
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
Update bedrock-entry.sh to clean up old settings #346
Update bedrock-entry.sh to clean up old settings #346
Conversation
Setting `white-list` to true with no `whitelist.json` file causes all players to show up as not invited. If this container was ran with a version prior to https://github.com/itzg/docker-minecraft-bedrock-server/pull/337/files using an allow/white list, `white-list=true` would be set in `server.properties` in the Docker volume, but PR 337 removed the `whitelist.json` file.
This may be a rare occurrence, but I had previously used |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! I had flipped between iterations of that and left the old bits behind in the process.
This appears to break allow lists by adding the extraneous white-list = 'false' to the bottom of server.properties (for me). |
I thought the bug in Bedrock was only triggered by the presence of the whitelist file. So, @ijbaird you're observing that just the property being present breaks it too? If that's the case, then the set-property tool will need to be enhanced to support removal of properties and not just updating/adding. |
Yes, I'm seeing that the presence of the property setting is enough to trigger the bug. |
I followed this issue #336, and was not able to solve the issue. In the docker-compose files we have this.
I deleted the In file |
Setting
white-list
to true with nowhitelist.json
file causes all players to show up as not invited. If this container was ran with a version prior to https://github.com/itzg/docker-minecraft-bedrock-server/pull/337/files using an allow/white list,white-list=true
would be set inserver.properties
in the Docker volume, but PR 337 removed thewhitelist.json
file.