Make walls connect with torches again

This commit is contained in:
Wuzzy 2017-03-12 05:04:16 +01:00
parent e203d86314
commit 1fa69536c6
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ local function update_wall(pos)
-- Torches or walkable nodes above the wall
local upnode = minetest.get_node({x = pos.x, y = pos.y+1, z = pos.z})
if sum == 5 or sum == 10 then
if minetest.registered_nodes[upnode.name].walkable or upnode.name == "mcl_torches:floor" then
if minetest.registered_nodes[upnode.name].walkable or upnode.name == "mcl_torches:torch" then
sum = sum + 11
end
end