Skip to content

Commit 9ba26d8

Browse files
committed
Update Balatro.lua
1 parent a255644 commit 9ba26d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

big-num/notations/Balatro.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function BalaNotation:format(n, places)
2626
return string.format(num ~= math.floor(num) and (num >= 100 and "%.0f" or num >= 10 and "%.1f" or "%.2f") or "%.0f", num):reverse():gsub("(%d%d%d)", "%1,"):gsub(",$", ""):reverse()
2727
end
2828
if n.isNaN and n:isNaN() then
29-
return "NaN"
29+
return "nan"
3030
end
3131
--The notation here is Hyper-E notation, but with lowercase E.
3232
if to_big(n:log10()) < to_big(1000000) then

0 commit comments

Comments
 (0)