renzu_clothes
renzu_clothes copied to clipboard
Errors
Help me please?
@renzuzu
I have the same problem, have you found a solution?
Something that worked for me is to change config.old = false to true in the config.lua
Actually i found the problem!
Im using skinchanger and oxmysql
in config.lua
lines 1173-1179
if Config.skin == 'skinchanger' then
local skin = promise:new()
TriggerEvent('skinchanger:getSkin', function(skin)
skin:resolve()
end)
return Citizen.Await(skin)
end
should be changed to this
local skinPromise = promise:new()
TriggerEvent('skinchanger:getSkin', function(skinData)
skinPromise:resolve(skinData)
end)
return Citizen.Await(skinPromise)
Should fix the issue