From d0a54602488853a517122dfc2bb7a184f716e6db Mon Sep 17 00:00:00 2001 From: Riley Date: Sun, 1 May 2022 10:16:58 +0200 Subject: texturePools documentation --- doc/config.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'doc/config.md') diff --git a/doc/config.md b/doc/config.md index a7d9ba3..76aae2b 100644 --- a/doc/config.md +++ b/doc/config.md @@ -13,11 +13,13 @@ This is an example configuration file with two servers. Remember to install "Servers": [ { "Name": "default_server", - "Addr": "minetest.local:30000" + "Addr": "minetest.local:30000", + "TexturePool": "mt_game" }, { "Name": "some_other_server", - "Addr": "minetest.local:30001" + "Addr": "minetest.local:30001", + "TexturePool": "mt_game" } ] } @@ -117,6 +119,13 @@ Default: "" Description: The network address and port of an internal server. ``` +> `Server.TexturePool` +``` +Type: string +Default: "" +Description: The texture Pool the server will be mapped to default is server name. +``` + > `Server.Fallback` ``` Type: []string -- cgit v1.2.3 From 7719e4c65aa6f4e0deaca98b9d10faf23c399e28 Mon Sep 17 00:00:00 2001 From: HimbeerserverDE Date: Sun, 1 May 2022 16:58:57 +0200 Subject: Remove TexturePool as it's unneeded for a minimal configuration file --- doc/config.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'doc/config.md') diff --git a/doc/config.md b/doc/config.md index 76aae2b..f362634 100644 --- a/doc/config.md +++ b/doc/config.md @@ -13,13 +13,11 @@ This is an example configuration file with two servers. Remember to install "Servers": [ { "Name": "default_server", - "Addr": "minetest.local:30000", - "TexturePool": "mt_game" + "Addr": "minetest.local:30000" }, { "Name": "some_other_server", - "Addr": "minetest.local:30001", - "TexturePool": "mt_game" + "Addr": "minetest.local:30001" } ] } -- cgit v1.2.3 From 8ba3bec386a6213e7ac750c33da2c207ea1ef43c Mon Sep 17 00:00:00 2001 From: HimbeerserverDE Date: Sun, 1 May 2022 17:00:33 +0200 Subject: Slightly improve Server.TexturePool documentation --- doc/config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/config.md') diff --git a/doc/config.md b/doc/config.md index f362634..7bc0b5f 100644 --- a/doc/config.md +++ b/doc/config.md @@ -120,8 +120,8 @@ Description: The network address and port of an internal server. > `Server.TexturePool` ``` Type: string -Default: "" -Description: The texture Pool the server will be mapped to default is server name. +Default: Server.Name +Description: The texture pool the server will be mapped to. ``` > `Server.Fallback` -- cgit v1.2.3