From ca814f4dd72ff5329fccc64a5fdbc7e8b807d844 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Thu, 5 Jun 2025 21:34:15 -0700 Subject: [PATCH] That didn't need to be a variable --- Assets/Scripts/Tools.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Assets/Scripts/Tools.cs b/Assets/Scripts/Tools.cs index e9a4b80..2074e11 100644 --- a/Assets/Scripts/Tools.cs +++ b/Assets/Scripts/Tools.cs @@ -27,8 +27,7 @@ public static class Tools { try { - BigInteger bigInt = BigInteger.Parse(number); - return FormatWithCommas(bigInt); + return FormatWithCommas(BigInteger.Parse(number)); } catch {