Wrap library result in function for multiple return values
This commit is contained in:
parent
4f145a991c
commit
3b25361988
@ -63,7 +63,6 @@ function Cache.makeCache(cacheLoader)
|
|||||||
|
|
||||||
local entry = nil
|
local entry = nil
|
||||||
if #chest.list() == 0 and type(cacheLoader) == "function" then
|
if #chest.list() == 0 and type(cacheLoader) == "function" then
|
||||||
print("Using cacheloader")
|
|
||||||
entry = cacheLoader(name, chest)
|
entry = cacheLoader(name, chest)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -341,4 +340,4 @@ local function QUICKLOAD(name, chest)
|
|||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
|
|
||||||
return Cache, QUICKLOAD
|
return function() return Cache, QUICKLOAD end
|
Loading…
x
Reference in New Issue
Block a user