Skip to content

Instantly share code, notes, and snippets.

@cornernote
Created July 23, 2015 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cornernote/d22596f7f8aaf7be66a2 to your computer and use it in GitHub Desktop.
Save cornernote/d22596f7f8aaf7be66a2 to your computer and use it in GitHub Desktop.
-- remove flowing
minetest.register_abm({
nodenames = {'default:lava_flowing','default:water_flowing'},
interval = 1,
chance = 1,
action = function(pos, node)
if pos.y < skyblock.WORLD_BOTTOM then
minetest.env:remove_node(pos)
end
end,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment