gamerules.txt is now bootstrap.txt

This commit is contained in:
Nick Lloyd 2016-01-06 15:55:45 -05:00
parent 4b74d13f08
commit 63e3123ab0

View file

@ -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