Merge pull request #74 from khonkhortisan/eghoststone

Remove ghoststone_active shadow on_construct
This commit is contained in:
Anthony 2013-02-08 17:01:13 -08:00
commit 7cc803b0d7
1 changed files with 9 additions and 1 deletions

View File

@ -51,6 +51,7 @@ minetest.register_node("mesecons_random:ghoststone_active", {
walkable = false, walkable = false,
diggable = false, diggable = false,
sunlight_propagates = true, sunlight_propagates = true,
paramtype = "light",
mesecons = {conductor = { mesecons = {conductor = {
state = mesecon.state.on, state = mesecon.state.on,
rules = { rules = {
@ -62,7 +63,14 @@ minetest.register_node("mesecons_random:ghoststone_active", {
{x = 0, y = 0, z = 1}, {x = 0, y = 0, z = 1},
}, },
offstate = "mesecons_random:ghoststone" offstate = "mesecons_random:ghoststone"
}} }},
on_construct = function(pos)
--remove shadow
pos2 = {x = pos.x, y = pos.y + 1, z = pos.z}
if ( minetest.env:get_node(pos2).name == "air" ) then
minetest.env:dig_node(pos2)
end
end
}) })