Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thegrb93 committed Aug 11, 2024
1 parent 0f1c007 commit 80bd606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/starfall/libs_cl/notification.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function notification_library.addProgress(id, text, progress)
checkluatype(id, TYPE_STRING)
checkluatype(text, TYPE_STRING)
if progress~=nil then
checkluatype(text, TYPE_NUMBER)
checkluatype(progress, TYPE_NUMBER)
progress = math.Clamp(progress, 0, 1)
end

Expand Down

0 comments on commit 80bd606

Please sign in to comment.