diff --git a/init.lua b/init.lua index 83eda56..9032055 100644 --- a/init.lua +++ b/init.lua @@ -96,11 +96,6 @@ local lib = setmetatable({ __call = call, }) -_ENV.lib = lib - --- Override standard Lua require with our own. -require = lib.require - local intervals = {} --- Dream of a world where this PR gets accepted. ---@param callback function | number @@ -215,7 +210,9 @@ function lib.onCache(key, cb) table.insert(cacheEvents[key], cb) end +_ENV.lib = lib _ENV.cache = cache +_ENV.require = lib.require local notifyEvent = ('__ox_notify_%s'):format(cache.resource)