1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-11 14:35:57 +02:00
parent df42f2a9dd
commit 061e5de520

View file

@ -344,11 +344,17 @@ if Config.EnableJobOutfitsCommand then
end end
lib.addCommand("reloadskin", { help = _L("commands.reloadskin.title") }, function(source) 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) end)
lib.addCommand("clearstuckprops", { help = _L("commands.clearstuckprops.title") }, function(source) 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) end)
lib.versionCheck("iLLeniumStudios/illenium-appearance") lib.versionCheck("iLLeniumStudios/illenium-appearance")