From a05335d6e289cdfa088c4bc99598f1472b059a2d Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Wed, 2 Jun 2021 21:47:32 -0400 Subject: [PATCH] fixed a stupid mistake --- src/ui/numeralFormat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/numeralFormat.ts b/src/ui/numeralFormat.ts index 5029bdaa9..3c8c38d57 100644 --- a/src/ui/numeralFormat.ts +++ b/src/ui/numeralFormat.ts @@ -71,7 +71,7 @@ class NumeralFormatter { } formatMoney(n: number): string { - return "$" + this.formatAbsurdNumber + return "$" + this.formatAbsurdNumber(n, 3); } formatSkill(n: number): string {