@@ -139,7 +139,7 @@ By default, the container will download the latest version of the "vanilla" [Min
* [Running on RaspberryPi](#running-on-raspberrypi)
* [Running on RaspberryPi](#running-on-raspberrypi)
* [Contributing](#contributing)
* [Contributing](#contributing)
<!-- Added by: runner, at: Sat Jan 8 00:32:28 UTC 2022 -->
<!-- Added by: runner, at: Thu Jan 6 12:50:03 UTC 2022 -->
<!--te-->
<!--te-->
@@ -587,8 +587,6 @@ Configuration options with defaults:
-`LIMBO_SCHEMA_FILENAME`=default.schem
-`LIMBO_SCHEMA_FILENAME`=default.schem
-`LEVEL`="Default;${LIMBO_SCHEMA_FILENAME}"
-`LEVEL`="Default;${LIMBO_SCHEMA_FILENAME}"
> NOTE: instead of using format codes in the MOTD, Limbo requires [JSON chat content](https://minecraft.fandom.com/wiki/Raw_JSON_text_format#Java_Edition). If a plain string is provided, which is the default, then it gets converted into the required JSON structure.
### Running a Crucible server
### Running a Crucible server
A [Crucible](https://github.com/CrucibleMC/Crucible) server can be run by setting `TYPE` to `CRUCIBLE`.
A [Crucible](https://github.com/CrucibleMC/Crucible) server can be run by setting `TYPE` to `CRUCIBLE`.
# If not provided, generate a reasonable default message-of-the-day,
# If not provided, generate a reasonable default message-of-the-day,
# which shows up in the server listing in the client
# which shows up in the server listing in the client
if ! [ -v "$MOTD" ]; then
if [ -z "$MOTD" ]; then
# snapshot is the odd case where we have to look at version to identify that label
# snapshot is the odd case where we have to look at version to identify that label
if [[ ${ORIGINAL_TYPE} == "VANILLA" && ${VERSION} == "SNAPSHOT" ]]; then
if [[ ${ORIGINAL_TYPE} == "VANILLA" && ${VERSION} == "SNAPSHOT" ]]; then
label=SNAPSHOT
label=SNAPSHOT
@@ -62,13 +62,6 @@ function customizeServerProps {
MOTD="A ${label} Minecraft Server powered by Docker"
MOTD="A ${label} Minecraft Server powered by Docker"
fi
fi
# normalize MOTD
if [[ ${TYPE^^} = LIMBO ]]; then
if [[ $MOTD ]] && ! [[ $MOTD =~ ^{ ]]; then
MOTD="{\"text\":\"${MOTD}\"}"
fi
fi
setServerProp "server-name" SERVER_NAME
setServerProp "server-name" SERVER_NAME
setServerProp "server-ip" SERVER_IP
setServerProp "server-ip" SERVER_IP
setServerProp "server-port" SERVER_PORT
setServerProp "server-port" SERVER_PORT
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.