Doors: Fix trapdoor on_blast

Removing the node above was an error and is unnecessary
master
Thomas--S 2016-07-17 20:37:29 +02:00 committed by paramat
parent 9862bbc8e5
commit f018e06d9b
1 changed files with 0 additions and 1 deletions

View File

@ -576,7 +576,6 @@ function doors.register_trapdoor(name, def)
else
def.on_blast = function(pos, intensity)
minetest.remove_node(pos)
minetest.remove_node({x = pos.x, y = pos.y + 1, z = pos.z})
return {name}
end
end