Remove dedicated meselamp stuff

This commit is contained in:
Jeija 2012-03-29 22:14:14 +02:00
parent e0c1740944
commit d9a605511d
1 changed files with 0 additions and 17 deletions

View File

@ -460,23 +460,6 @@ function mesecon:changesignal(pos)
until false
end
mesecon:register_on_signal_on(function(pos, node)
if node.name=="mesecons:meselamp_off" then
--minetest.env:remove_node(pos)
minetest.env:add_node(pos, {name="mesecons:meselamp_on"})
nodeupdate(pos)
end
end)
mesecon:register_on_signal_off(function(pos, node)
if node.name=="mesecons:meselamp_on" then
--minetest.env:remove_node(pos)
minetest.env:add_node(pos, {name="mesecons:meselamp_off"})
nodeupdate(pos)
end
end)
function mesecon:add_rules(name, rules)
local i=0
while mesecon.rules[i]~=nil do