mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
feat(keys): implement a DisableControlAction wrapper
This commit is contained in:
13
init.lua
13
init.lua
@@ -32,16 +32,7 @@ local function loadFile(self, file)
|
||||
error(('\n^1Error importing module (%s): %s^0'):format(dir, err), 3)
|
||||
else
|
||||
rawset(self, file, chunk())
|
||||
return setmetatable(self[file], {
|
||||
__index = {
|
||||
name = file,
|
||||
resource = LIBRARY
|
||||
},
|
||||
|
||||
__newindex = function()
|
||||
error('Cannot add indexes to imports')
|
||||
end
|
||||
})
|
||||
return self[file]
|
||||
end
|
||||
else error(('\n^3Unable to import module (%s)^0'):format(dir), 3) end
|
||||
end
|
||||
@@ -84,7 +75,7 @@ setmetatable(lib, {
|
||||
_ENV.lib = lib
|
||||
|
||||
--- Dream of a world where this PR gets accepted.
|
||||
--- ```lua
|
||||
--- ```
|
||||
--- SetInterval(callback: function, timer: number)
|
||||
--- ```
|
||||
SetInterval = setmetatable({currentId = 0}, {
|
||||
|
||||
Reference in New Issue
Block a user