From d8cc8cd28ae0227f1aa9c6e5a5c587e2e9a995c3 Mon Sep 17 00:00:00 2001 From: HimbeerserverDE Date: Tue, 3 May 2022 07:57:25 +0200 Subject: [PATCH] Use JSON object instead of array to properly represent the server map and not cause an error on startup --- doc/config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/config.md b/doc/config.md index f354abf..cec385a 100644 --- a/doc/config.md +++ b/doc/config.md @@ -10,14 +10,14 @@ This is an example configuration file with two servers. Remember to install ```json { - "Servers": [ + "Servers": { "ServerName1": { "Addr": "minetest.local:30000" }, "ServerName2": { "Addr": "minetest.local:30001" } - ] + } } ```