diff --git a/fxmanifest.lua b/fxmanifest.lua index db80651..2e2ff7f 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -1,4 +1,4 @@ --- pe-lualib +-- ox_lib -- Copyright (C) 2021 Linden -- This program is free software: you can redistribute it and/or modify @@ -21,10 +21,10 @@ lua54 'yes' game 'gta5' --[[ Resource Information ]]-- -name 'pe-lualib' +name 'ox_lib' author 'Linden' version '1.4.0' -repository 'https://github.com/project-error/pe-lualib' +repository 'https://github.com/overextended/ox_lib' description 'A library of shared functions to utilise in other resources.' [[ Manifest ]]-- @@ -47,9 +47,8 @@ client_scripts { } server_scripts { - 'version.lua', 'resource/**/server.lua', 'resource/**/server/*.lua' } -provide 'lualib' +provide 'pe-lualib' diff --git a/init.lua b/init.lua index 729e6c9..7b2490c 100644 --- a/init.lua +++ b/init.lua @@ -8,7 +8,7 @@ end ----------------------------------------------------------------------------------------------- -- env -local lualib = 'pe-lualib' +local lualib = 'ox_lib' local file = IsDuplicityVersion() and 'server' or 'client' -- micro-optimise @@ -27,7 +27,7 @@ local function loadFile(self, module) if chunk then local err - chunk, err = load(chunk, ('@@pe-lualib/%s/%s.lua'):format(module, file)) + chunk, err = load(chunk, ('@@ox_lib/%s/%s.lua'):format(module, file)) if err then error(('\n^1Error importing module (%s): %s^0'):format(dir, err), 3) else @@ -118,7 +118,7 @@ function ClearInterval(id) intervals[id] = -1 end --- pe-lualib +-- ox_lib -- Copyright (C) 2021 Linden -- This program is free software: you can redistribute it and/or modify