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
This commit is contained in:
Jim Shield
2025-09-23 14:59:16 +01:00
parent ed997ad8a2
commit 9fa8f58cfb

View File

@@ -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,