Skip to content

Instantly share code, notes, and snippets.

@benrob0329
Created November 29, 2017 03:27
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 benrob0329/530e55e5c571fa2255f8e52c713e176d to your computer and use it in GitHub Desktop.
Save benrob0329/530e55e5c571fa2255f8e52c713e176d to your computer and use it in GitHub Desktop.
function tardis.load_map(pos)
local node = minetest.get_node_or_nil(pos)
if (node) then
return true
else
print("loading map")
minetest.emerge_area(pos, pos)
minetest.after(100, tardis.load_map(pos))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment