Fix slab -> full block transformation

This commit is contained in:
PilzAdam 2012-11-02 12:28:23 +01:00
parent 25a6cd866b
commit e0fe1a08c5
1 changed files with 2 additions and 5 deletions

View File

@ -71,13 +71,10 @@ function stairs.register_slab(subname, recipeitem, groups, images, description)
local p0 = pointed_thing.under
local p1 = pointed_thing.above
local n0 = minetest.env:get_node(p0)
local n1 = minetest.env:get_node(p1)
if n0.name == "stairs:slab_" .. subname then
if n0.name == "stairs:slab_" .. subname and
p0.y+1 == p1.y then
slabpos = p0
slabnode = n0
elseif n1.name == "stairs:slab_" .. subname then
slabpos = p1
slabnode = n1
end
if slabpos then
-- Remove the slab at slabpos