diff --git a/docs/configuration/server-properties.md b/docs/configuration/server-properties.md index 63a95a13..0bfbc153 100644 --- a/docs/configuration/server-properties.md +++ b/docs/configuration/server-properties.md @@ -414,6 +414,9 @@ When using `docker run` from a bash shell, the entries must be quoted with the ` | HARDCORE | [hardcore](https://minecraft.wiki/w/Server.properties#hardcore) | | HIDE_ONLINE_PLAYERS | [hide-online-players](https://minecraft.wiki/w/Server.properties#hide-online-players) | | LOG_IPS | [log-ips](https://minecraft.wiki/w/Server.properties#log-ips) | +| MANAGEMENT_SERVER_ENABLED | [management-server-enabled](https://minecraft.wiki/w/Server.properties#management-server-enabled) | +| MANAGEMENT_SERVER_HOST | [management-server-host](https://minecraft.wiki/w/Server.properties#management-server-host) | +| MANAGEMENT_SERVER_PORT | [management-server-port](https://minecraft.wiki/w/Server.properties#management-server-port) | | MAX_CHAINED_NEIGHBOR_UPDATES | [max-chained-neighbor-updates](https://minecraft.wiki/w/Server.properties#max-chained-neighbor-updates) | | MAX_PLAYERS | [max-players](https://minecraft.wiki/w/Server.properties#max-players) | | MAX_TICK_TIME | [max-tick-time](https://minecraft.wiki/w/Server.properties#max-tick-time) | @@ -433,6 +436,7 @@ When using `docker run` from a bash shell, the entries must be quoted with the ` | SIMULATION_DISTANCE | [simulation-distance](https://minecraft.wiki/w/Server.properties#simulation-distance) | | SPAWN_MONSTERS | [spawn-monsters](https://minecraft.wiki/w/Server.properties#spawn-monsters) | | SPAWN_PROTECTION | [spawn-protection](https://minecraft.wiki/w/Server.properties#spawn-protection) | +| STATUS_HEARTBEAT_INTERVAL | [status-heartbeat-interval](https://minecraft.wiki/w/Server.properties#status-heartbeat-interval) | | SYNC_CHUNK_WRITES | [sync-chunk-writes](https://minecraft.wiki/w/Server.properties#sync-chunk-writes) | | USE_NATIVE_TRANSPORT | [use-native-transport](https://minecraft.wiki/w/Server.properties#use-native-transport) | | VIEW_DISTANCE | [view-distance](https://minecraft.wiki/w/Server.properties#view-distance) | \ No newline at end of file diff --git a/files/property-definitions.json b/files/property-definitions.json index b43f156a..6df0bb3a 100644 --- a/files/property-definitions.json +++ b/files/property-definitions.json @@ -28,6 +28,9 @@ "level-seed": {"env": "SEED"}, "level-type": {"env": "LEVEL_TYPE"}, "log-ips": {"env": "LOG_IPS"}, + "management-server-enabled": {"env": "MANAGEMENT_SERVER_ENABLED"}, + "management-server-host": {"env": "MANAGEMENT_SERVER_HOST"}, + "management-server-port": {"env": "MANAGEMENT_SERVER_PORT"}, "max-build-height": {"env": "MAX_BUILD_HEIGHT"}, "max-chained-neighbor-updates": {"env": "MAX_CHAINED_NEIGHBOR_UPDATES"}, "max-players": {"env": "MAX_PLAYERS"}, @@ -61,6 +64,7 @@ "spawn-monsters": {"env": "SPAWN_MONSTERS"}, "spawn-npcs": {"env": "SPAWN_NPCS"}, "spawn-protection": {"env": "SPAWN_PROTECTION"}, + "status-heartbeat-interval": {"env": "STATUS_HEARTBEAT_INTERVAL"}, "sync-chunk-writes": {"env": "SYNC_CHUNK_WRITES"}, "use-native-transport": {"env": "USE_NATIVE_TRANSPORT"}, "view-distance": {"env": "VIEW_DISTANCE"},