mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
refactor(init): move global declarations
This commit is contained in:
7
init.lua
7
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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user