Don't eat stairs

This commit is contained in:
khonkhortisan 2013-04-20 16:00:08 -07:00
parent 92d3571ff5
commit cf7e64ff40
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@ minetest.register_abm({
if minetest.registered_nodes[node.name].drawtype == "normal"
or minetest.registered_nodes[node.name].drawtype == "allfaces_optional" then
local np = addvectors(pos, {x=0, y=1, z=0})
if minetest.env:get_node_light(np, 0.5) == 15 then
if minetest.env:get_node_light(np, 0.5) == 15
and minetest.env:get_node(np).name == "air" then
minetest.env:add_node(np, {name="weather:snow_cover"})
end
end