diff options
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, |