mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 10:31:06 +01:00
Dont skip night if no players are in bed
This commit is contained in:
parent
e83438e42c
commit
03be736566
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue