Skip to content
Snippets Groups Projects
Commit 874b1ae3 authored by Auke Kok's avatar Auke Kok Committed by paramat
Browse files

Beds: Check for buildable_to for bottom half

We properly checked top half already, just not the top half
target location.

Assure both checked positions are not unknown nodes.

Fixes #991
parent 1977ae19
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,11 @@ function beds.register_bed(name, def)
return itemstack
end
local def = minetest.registered_nodes[minetest.get_node(pos).name]
if not def or not def.buildable_to then
return itemstack
end
local dir = minetest.dir_to_facedir(placer:get_look_dir())
local botpos = vector.add(pos, minetest.facedir_to_dir(dir))
......@@ -68,7 +73,8 @@ function beds.register_bed(name, def)
return itemstack
end
if not minetest.registered_nodes[minetest.get_node(botpos).name].buildable_to then
local botdef = minetest.registered_nodes[minetest.get_node(botpos).name]
if not botdef or not botdef.buildable_to then
return itemstack
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment