From 9fa8f58cfbe0d20f000eeb25ad2cb1d7ac8381f3 Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Tue, 23 Sep 2025 14:59:16 +0100 Subject: [PATCH] Make ox_lib progressbars actually return false I think this was causing progressbars to return true instead of `nil/false` somehow this *should* make it more certain --- shared/make/progressBars.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/make/progressBars.lua b/shared/make/progressBars.lua index c0609b0..15c1b94 100644 --- a/shared/make/progressBars.lua +++ b/shared/make/progressBars.lua @@ -52,7 +52,7 @@ local progressFunc = { if exports[OXLibExport]:progressBar(options) then return true else - print("^1progressBar was not successful") + return false end end end,