From b3eef05b2d95f08df123125080c0ec187d6ee876 Mon Sep 17 00:00:00 2001 From: Mycroft Date: Wed, 4 May 2022 19:06:07 +0100 Subject: [PATCH] fix(esx_progressbar): fix wrong example syntax --- [esx]/esx_progressbar/Progress.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[esx]/esx_progressbar/Progress.lua b/[esx]/esx_progressbar/Progress.lua index 7b71c3cc..99b87e8b 100644 --- a/[esx]/esx_progressbar/Progress.lua +++ b/[esx]/esx_progressbar/Progress.lua @@ -21,7 +21,7 @@ exports('Progressbar', Progressbar) -- Example --[[RegisterCommand("progress", function() - exports["esx_progressbar"]:Progressbar("test", 25000, false,{animation ={type = "anim",dict = "mini@prostitutes@sexlow_veh", lib ="low_car_sex_to_prop_p2_player" }, onFinish = function() + exports["esx_progressbar"]:Progressbar("test", 25000,{FreezePlayer = false, animation ={type = "anim",dict = "mini@prostitutes@sexlow_veh", lib ="low_car_sex_to_prop_p2_player" }, onFinish = function() print("finish") end}) end)]]