-- LUALOCALS < --------------------------------------------------------- local include, nodecore = include, nodecore -- LUALOCALS > --------------------------------------------------------- minetest.register_abm({ label = "go smoke", interval = 15, chance = 1, nodenames = {"group:go_stone"}, action = function(pos, node) if not (node.param2 == 0) then nodecore.smokefx(pos, 60, node.param2) end end })