simplify local modules loading
This commit is contained in:
parent
eb9a89ed96
commit
02578a6276
@ -292,6 +292,10 @@ function __load_script(path, nocache)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function require(path)
|
function require(path)
|
||||||
|
if not string.find(path, ':') then
|
||||||
|
local prefix, _ = parse_path(debug.getinfo(2).source)
|
||||||
|
return require(prefix..':'..path)
|
||||||
|
end
|
||||||
local prefix, file = parse_path(path)
|
local prefix, file = parse_path(path)
|
||||||
return __load_script(prefix..":modules/"..file..".lua")
|
return __load_script(prefix..":modules/"..file..".lua")
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user