From 63e3123ab05f07c60fe0f7d42ecf5df6624bcc78 Mon Sep 17 00:00:00 2001 From: Nick Lloyd Date: Wed, 6 Jan 2016 15:55:45 -0500 Subject: [PATCH] gamerules.txt is now bootstrap.txt --- minecraft-server/start-minecraft.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/minecraft-server/start-minecraft.sh b/minecraft-server/start-minecraft.sh index 364b5938..28b12840 100755 --- a/minecraft-server/start-minecraft.sh +++ b/minecraft-server/start-minecraft.sh @@ -253,10 +253,10 @@ do fi done -# If we have a gamerules.txt file... feed that in to the server stdin -if [ -f /data/gamerules.txt ]; +# If we have a bootstrap.txt file... feed that in to the server stdin +if [ -f /data/bootstrap.txt ]; then - exec java $JVM_OPTS -jar $SERVER < /data/gamerules.txt + exec java $JVM_OPTS -jar $SERVER < /data/bootstrap.txt else exec java $JVM_OPTS -jar $SERVER fi