diff --git a/Factorio/server-settings.json b/Factorio/server-settings.json index 92a6669..0bb77f5 100644 --- a/Factorio/server-settings.json +++ b/Factorio/server-settings.json @@ -29,6 +29,9 @@ "_comment_max_upload_in_kilobytes_per_second" : "optional, default value is 0. 0 means unlimited.", "max_upload_in_kilobytes_per_second": 0, + "_comment_max_upload_slots" : "optional, default value is 5. 0 means unlimited.", + "max_upload_slots": 5, + "_comment_minimum_latency_in_ticks": "optional one tick is 16ms in default speed, default value is 0. 0 means no minimum.", "minimum_latency_in_ticks": 0, @@ -55,6 +58,12 @@ "_comment_autosave_only_on_server": "Whether autosaves should be saved only on server or also on all connected clients. Default is true.", "autosave_only_on_server": true, - "_comment_admins": "List of case insensitive usernames, that will be promoted immediately", - "admins": [] + "_comment_non_blocking_saving": "Highly experimental feature, enable only at your own risk of losing your saves. On UNIX systems, server will fork itself to create an autosave. Autosaving on connected Windows clients will be disabled regardless of autosave_only_on_server option.", + "non_blocking_saving": false, + + "_comment_segment_sizes": "Long network messages are split into segments that are sent over multiple ticks. Their size depends on the number of peers currently connected. Increasing the segment size will increase upload bandwidth requirement for the server and download bandwidth requirement for clients. This setting only affects server outbound messages. Changing these settings can have a negative impact on connection stability for some clients.", + "minimum_segment_size": 25, + "minimum_segment_size_peer_count": 20, + "maximum_segment_size": 100, + "maximum_segment_size_peer_count": 10 }