Browse Source

fix(mcb): fix renaming whitelist to allowlist (#3883)

pull/3886/head
Christian 3 years ago
committed by GitHub
parent
commit
37ea2c99bc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/update_minecraft_bedrock.sh

2
lgsm/functions/update_minecraft_bedrock.sh

@ -17,7 +17,7 @@ fn_update_minecraft_dl(){
if [ "${firstcommandname}" == "INSTALL" ]; then
unzip -oq "${tmpdir}/bedrock_server.${remotebuild}.zip" -x "server.properties" -d "${serverfiles}"
else
unzip -oq "${tmpdir}/bedrock_server.${remotebuild}.zip" -x "permissions.json" "server.properties" "whitelist.json" -d "${serverfiles}"
unzip -oq "${tmpdir}/bedrock_server.${remotebuild}.zip" -x "permissions.json" "server.properties" "allowlist.json" -d "${serverfiles}"
fi
local exitcode=$?
if [ "${exitcode}" == "0" ]; then

Loading…
Cancel
Save