diff options
author | Paramat <paramat@users.noreply.github.com> | 2019-04-13 01:46:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-13 01:46:38 +0100 |
commit | 4d2ad7c2b2e91f8a0138fa583f28465278cf0802 (patch) | |
tree | 222dbfcf84ed51f09e3372e4cbe259e3b17800eb /builtin | |
parent | faa419fc8bd29011d8efb58c5144d2e815d0f600 (diff) | |
download | minetest-4d2ad7c2b2e91f8a0138fa583f28465278cf0802.tar.gz minetest-4d2ad7c2b2e91f8a0138fa583f28465278cf0802.tar.bz2 minetest-4d2ad7c2b2e91f8a0138fa583f28465278cf0802.zip |
World start time: Move to first full light (day night ratio = 1000) (#8410)
6125 is the time of first full light according to 'get_node_light()',
and the time of first full light visually when basic shaders are on.
This is the optimum default new world start time, taking all possible
games into account.
The previous time assumed a game similar to Minetest Game. Games
should set this setting themselves according to their needs.
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/settingtypes.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index 877b6f2b8..f0ba434a2 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -1097,7 +1097,7 @@ time_send_interval (Time send interval) int 5 time_speed (Time speed) int 72 # Time of day when a new world is started, in millihours (0-23999). -world_start_time (World start time) int 5250 0 23999 +world_start_time (World start time) int 6125 0 23999 # Interval of saving important changes in the world, stated in seconds. server_map_save_interval (Map save interval) float 5.3 |