From fae099fd93d6253a3271eefff4f02adb20b94746 Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Tue, 8 Jul 2025 11:20:52 +0100 Subject: [PATCH] fix progressbar looking for missing function --- ui_modules/progressbar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui_modules/progressbar.lua b/ui_modules/progressbar.lua index f0ad99f..65743aa 100644 --- a/ui_modules/progressbar.lua +++ b/ui_modules/progressbar.lua @@ -22,7 +22,7 @@ end local function stopAnim(animDict, animName, ped) StopAnimTask(ped or PlayerPedId(), animDict, animName, 0.5) StopAnimTask(ped or PlayerPedId(), animName, animDict, 0.5) - unloadAnimDict(animDict) + RemoveAnimDict(animDict) end function redProgressBar(data)