master #9

Merged
NO11 merged 42 commits from VoxeLibre/VoxeLibre:master into master 2021-10-09 23:19:44 +02:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit cd84c472dc - Show all commits

View File

@ -215,11 +215,11 @@ local function update_formspecs(finished, ges)
else
local comment = "You will fall asleep when "
if players_in_bed_setting == 100 then
comment = comment .. "all players are in bed."
comment = S(comment .. "all players are in bed.")
else
comment = comment .. players_in_bed_setting .. "% of all players are in bed."
comment = S(comment .. "@1% of all players are in bed.", players_in_bed_setting)
end
text = text .. "\n" .. S(comment)
text = text .. "\n" .. comment
form_n = form_n .. bg_presleep
form_n = form_n .. button_leave
end