Dont skip night if no players are in bed

This commit is contained in:
NO11 2021-09-27 20:13:12 +00:00
parent e83438e42c
commit 03be736566
1 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,9 @@ local function check_in_beds(players)
if not players then
players = minetest.get_connected_players()
end
if player_in_bed < 0 then
return false
end
return players_in_bed_setting() <= (player_in_bed * 100) / #players
end