Fix ironblocks creating stack overflow

This commit is contained in:
oilboi 2020-06-30 10:46:06 -04:00
parent 4e0574c57b
commit 40ede22a68

View File

@ -50,10 +50,6 @@ minetest.register_lbm({
activator = true,
capacitor = 0,
})
minetest.after(0,function()
--redstone.update(pos)
redstone.update(pos,true)
end)
end,
})
@ -128,9 +124,5 @@ minetest.register_lbm({
activator = true,
capacitor = 1,
})
minetest.after(0,function()
--redstone.update(pos)
redstone.update(pos,true)
end)
end,
})