diff --git a/resources/[standalone]/illenium-appearance/server/server.lua b/resources/[standalone]/illenium-appearance/server/server.lua index 024906b8d..827d00953 100644 --- a/resources/[standalone]/illenium-appearance/server/server.lua +++ b/resources/[standalone]/illenium-appearance/server/server.lua @@ -344,11 +344,17 @@ if Config.EnableJobOutfitsCommand then end lib.addCommand("reloadskin", { help = _L("commands.reloadskin.title") }, function(source) - TriggerClientEvent("illenium-appearance:client:reloadSkin", source) + local src = source + TriggerClientEvent("illenium-appearance:client:reloadSkin", src) + Wait(500) + TriggerClientEvent("Pug:ReloadGuns:sling", src) end) lib.addCommand("clearstuckprops", { help = _L("commands.clearstuckprops.title") }, function(source) - TriggerClientEvent("illenium-appearance:client:ClearStuckProps", source) + local src = source + TriggerClientEvent("illenium-appearance:client:ClearStuckProps", src) + Wait(500) + TriggerClientEvent("Pug:ReloadGuns:sling", src) end) lib.versionCheck("iLLeniumStudios/illenium-appearance")