Fix spammy console bug

master
minermoder27 2015-04-15 08:09:00 +12:00
parent 99120bc508
commit 5ed8976434
1 changed files with 9 additions and 9 deletions

View File

@ -58,12 +58,12 @@ minetest.register_node("buildtest:pump_pipe", {
groups = {oddly_breakable_by_hand=3},
})
minetest.register_abm({
nodenames = {"default:lava_source"},
neighbors = {"buildtest:pump_pipe_act"},
interval = 10,
chance = 1,
action = function(pos, node)
minetest.set_node(pos, {name="buildtest:pump_pipe_act"})
end,
})
-- minetest.register_abm({
-- nodenames = {"default:lava_source"},
-- neighbors = {"buildtest:pump_pipe_act"},
-- interval = 10,
-- chance = 1,
-- action = function(pos, node)
-- minetest.set_node(pos, {name="buildtest:pump_pipe_act"})
-- end,
-- })