Guest User

Untitled

a guest
Apr 19th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. local function check_for_init()
  2.  
  3.     -- Your code here
  4.  
  5.     if not initialized then
  6.         minetest.after(0.1, check_for_init)
  7.     end
  8. end
  9.  
  10. -- First run
  11. minetest.after(0.1, check_for_init)
Add Comment
Please, Sign In to add comment