Skip to content

Commit

Permalink
chore: esx-qalle-jail\client\utils.lua minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpredator committed Aug 28, 2024
1 parent bcdc713 commit 1225b61
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,10 @@ end

function Cutscene()
DoScreenFadeOut(100)

Wait(250)

local Male = GetHashKey("mp_m_freemode_01")

TriggerEvent("skinchanger:getSkin", function(skin)
if GetHashKey(GetEntityModel(PlayerPedId())) == Male then
local hash = GetEntityModel(PlayerPedId())
if hash == "mp_m_freemode_01" then
local clothesSkin = {
["tshirt_1"] = 20,
["tshirt_2"] = 15,
Expand Down Expand Up @@ -171,6 +168,6 @@ CreateThread(function()
SetBlipColour(blip, 49)
SetBlipAsShortRange(blip, true)
BeginTextCommandSetBlipName("STRING")
AddTextComponentString("Boilingbroke Penitentiary")
AddTextComponentString("Penitentiary")
EndTextCommandSetBlipName(blip)
end)

0 comments on commit 1225b61

Please sign in to comment.