Remoção de resquicio de teste

master
BrunoMine 2017-06-20 14:24:12 -03:00
parent 8e1964d5c5
commit cd63562669
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,7 @@
minetest.register_abm({ minetest.register_abm({
label = "verificar terreno", label = "verificar terreno",
nodenames = {"terrenos:ocupado"}, nodenames = {"terrenos:ocupado"},
interval = 2, interval = 3600,
chance = 1, chance = 1,
action = function(pos) action = function(pos)
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
@ -33,7 +33,6 @@ minetest.register_abm({
terrenos.desocupar_placa(pos) terrenos.desocupar_placa(pos)
end end
minetest.chat_send_all("terreno ocupado a "..dif.." dias")
end end
end end
}) })