forked from VoxeLibre/VoxeLibre
Fix crash on startup if mcl_playersSleepingPercentage is not defined (#1874)
This commit is contained in:
parent
19b5a5aac7
commit
9ccf8de606
|
@ -27,7 +27,7 @@ local function get_look_yaw(pos)
|
|||
end
|
||||
|
||||
local function players_in_bed_setting()
|
||||
return tonumber(minetest.settings:get("mcl_playersSleepingPercentage"))
|
||||
return tonumber(minetest.settings:get("mcl_playersSleepingPercentage")) or 100
|
||||
end
|
||||
|
||||
local function is_night_skip_enabled()
|
||||
|
|
Loading…
Reference in New Issue