wishful/mods/wisgame/init.lua
2025-02-07 14:39:37 -05:00

11 lines
397 B
Lua

local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
-- DIR_DELIM 2345 < is 5 chars shorter, and I hate it!
c.dofolder(modpath .. modpath:match("[\\/]") .. "open", function(filePath)
if filePath:match("^.+%.(.+)$") == "lua" then
dofile(modpath .. modpath:match("[\\/]") .. "open"..modpath:match("[\\/]")..filePath)
end
--print(filePath)
end)