Skip to content

Commit

Permalink
Beds: Fix formspec size, no prepend
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker committed Jan 26, 2019
1 parent a2c9523 commit 2ff9058
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mods/beds/functions.lua
Expand Up @@ -109,12 +109,12 @@ local function update_formspecs(finished)
local is_majority = (ges / 2) < player_in_bed

if finished then
form_n = beds.formspec .. "label[2.7,11; Good morning.]"
form_n = beds.formspec .. "label[2.7,9; Good morning.]"
else
form_n = beds.formspec .. "label[2.2,11;" .. tostring(player_in_bed) ..
form_n = beds.formspec .. "label[2.2,9;" .. tostring(player_in_bed) ..
" of " .. tostring(ges) .. " players are in bed]"
if is_majority and is_night_skip_enabled() then
form_n = form_n .. "button_exit[2,8;4,0.75;force;Force night skip]"
form_n = form_n .. "button_exit[2,6;4,0.75;force;Force night skip]"
end
end

Expand Down
7 changes: 4 additions & 3 deletions mods/beds/init.lua
Expand Up @@ -4,9 +4,10 @@ beds.bed_position = {}
beds.pos = {}
beds.spawn = {}

beds.formspec = "size[8,15;true]" ..
"bgcolor[#080808BB; true]" ..
"button_exit[2,12;4,0.75;leave;Leave Bed]"
beds.formspec = "size[8,11;true]" ..
"no_prepend[]" ..
"bgcolor[#080808BB;true]" ..
"button_exit[2,10;4,0.75;leave;Leave Bed]"

local modpath = minetest.get_modpath("beds")

Expand Down

0 comments on commit 2ff9058

Please sign in to comment.