Advertisement
Mr_Pardison

Untitled

Apr 16th, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1.  
  2. local function load_module(path)
  3.   local file = io.open(path, "r")
  4.   if not file then return end
  5.   file:close()
  6.   return dofile(path)
  7. end
  8.  
  9. dofile(path .. "/chatcmdbuilder.lua")
  10.  
  11.  
  12. if minetest.setting_getbool("log_mods") then
  13.   print("[Bounty Hunting] loaded!")
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement