andy-gg's picture
Upload 2477 files
7e9dc27 verified
--[[
Project: SA-MP API
Author: LUCHARE
Website: BlastHack.Net
Copyright (c) 2018
]]
local module = {ffi = require 'ffi'}
function module.safely_include(mod)
if not package.loading then package.loading = {} end
if package.loading[mod] == nil then
package.loading[mod] = true
local v = {require(mod)}
package.loading[mod] = nil
return unpack(v)
end
end
return module