Use JSON object instead of array to properly represent the server map and not cause an error on startup

master
HimbeerserverDE 2022-05-03 07:57:25 +02:00
parent fd2bfca06f
commit d8cc8cd28a
No known key found for this signature in database
GPG Key ID: A3D3E205DA0B0401
1 changed files with 2 additions and 2 deletions

View File

@ -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"
}
]
}
}
```