From f4eac20ff84d34cbd6e2ccbf4d65d3b53c29e23a Mon Sep 17 00:00:00 2001 From: Gabriel Simmer Date: Sat, 16 Jul 2022 15:33:18 +0100 Subject: [PATCH] Default -> default in limbo world name (#1604) See #994 - Limbo will pass along the world name verbatim, but Minecraft (doesn't appear to) allow uppercase letters in world names. --- scripts/start-deployLimbo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-deployLimbo b/scripts/start-deployLimbo index 173c702..18ce676 100755 --- a/scripts/start-deployLimbo +++ b/scripts/start-deployLimbo @@ -8,7 +8,7 @@ isDebugging && set -x : ${LIMBO_BUILD:=LATEST} : ${FORCE_REDOWNLOAD:=false} : ${LIMBO_SCHEMA_FILENAME:=default.schem} -: ${LEVEL:=Default;${LIMBO_SCHEMA_FILENAME}} +: ${LEVEL:=default;${LIMBO_SCHEMA_FILENAME}} # defaults to localhost, if this is not set : ${SERVER_IP:=0.0.0.0}