From d3ab32a7acea2bf23ebb068ba1647015dd5ed553 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Sun, 14 Jul 2024 13:38:56 +0000 Subject: [PATCH] fix: .coins will no longer show double minus sign for negative changes --- src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs b/src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs index 74729876f..162ee53c8 100644 --- a/src/NadekoBot/Modules/Searches/Crypto/CryptoCommands.cs +++ b/src/NadekoBot/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