diff options
author | cheapie <no-email-for-you@example.com> | 2024-09-14 16:58:08 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2024-09-14 16:58:08 -0500 |
commit | 9ab552ae19fb10d4630192aaeb494d6f1fd88e7b (patch) | |
tree | 8e2181cd321e67d79e150966308d249fd69fd1f7 /init.lua | |
parent | 7dc5c49155e5b610af5a9467c66ef7f9e82997bd (diff) | |
download | daynightratio-9ab552ae19fb10d4630192aaeb494d6f1fd88e7b.tar daynightratio-9ab552ae19fb10d4630192aaeb494d6f1fd88e7b.tar.gz daynightratio-9ab552ae19fb10d4630192aaeb494d6f1fd88e7b.tar.bz2 daynightratio-9ab552ae19fb10d4630192aaeb494d6f1fd88e7b.tar.xz daynightratio-9ab552ae19fb10d4630192aaeb494d6f1fd88e7b.zip |
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1,4 +1,4 @@ -local function set(name,old,new) +local function set(name) local player = minetest.get_player_by_name(name) if playersettings.get(name,"daynightratio:enabled") then player:override_day_night_ratio(playersettings.get(name,"daynightratio:ratio")) @@ -9,7 +9,9 @@ end playersettings.register("daynightratio:enabled",{ shortdesc = "Day/Night Ratio: Use fixed ratio", - longdesc = "If enabled, a fixed day/night ratio will be used as set\nin the \"Day/Night Ratio: Custom ratio\" setting.\nIf disabled, day and night will cycle normally.", + longdesc = "If enabled, a fixed day/night ratio will be used as set\n".. + "in the \"Day/Night Ratio: Custom ratio\" setting.\n".. + "If disabled, day and night will cycle normally.", type = "boolean", default = false, onjoin = set, @@ -18,7 +20,13 @@ playersettings.register("daynightratio:enabled",{ playersettings.register("daynightratio:ratio",{ shortdesc = "Day/Night Ratio: Custom ratio", - longdesc = "If the \"Day/Night Ratio: Use fixed ratio\" setting is enabled,\nthis day ratio will be used at all times.\nIf that setting is disabled, this setting\nwill have no effect.\n0: Darker than night\n0.2: Night\n1: Day", + longdesc = "If the \"Day/Night Ratio: Use fixed ratio\" setting is enabled,\n".. + "this day ratio will be used at all times.\n".. + "If that setting is disabled, this setting\n".. + "will have no effect.\n".. + "0: Darker than night\n".. + "0.2: Night\n".. + "1: Day", type = "number", min = 0, max = 1, |