1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-07-12 10:50:21 +02:00

Fix simple bed height, make player lay down just above it, not inside it

This commit is contained in:
Paramat
2020-02-08 03:11:44 +00:00
committed by GitHub
parent f255e36d78
commit 9bf64b61c2
2 changed files with 10 additions and 4 deletions

View File

@ -79,10 +79,10 @@ beds.register_bed("beds:bed", {
}
},
nodebox = {
bottom = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
top = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
bottom = {-0.5, -0.5, -0.5, 0.5, 0.0625, 0.5},
top = {-0.5, -0.5, -0.5, 0.5, 0.0625, 0.5},
},
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.0625, 1.5},
recipe = {
{"wool:white", "wool:white", "wool:white"},
{"group:wood", "group:wood", "group:wood"}