From db83e6abc2b3c6f4196458067d45ebfda0270bf7 Mon Sep 17 00:00:00 2001 From: Toastie Date: Tue, 16 Jul 2024 22:30:23 +1200 Subject: [PATCH] 'coins will no longer show double minus sign for negative changes --- src/EllieBot/Modules/Searches/Crypto/CryptoCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EllieBot/Modules/Searches/Crypto/CryptoCommands.cs b/src/EllieBot/Modules/Searches/Crypto/CryptoCommands.cs index 13112e1..1bb8910 100644 --- a/src/EllieBot/Modules/Searches/Crypto/CryptoCommands.cs +++ b/src/EllieBot/Modules/Searches/Crypto/CryptoCommands.cs @@ -238,6 +238,6 @@ public partial class Searches => value > 0 ? "▲" : "▼"; private static string GetSign(decimal value) - => value >= 0 ? "+" : "-"; + => value >= 0 ? "+" : ""; } } \ No newline at end of file