mirror of
				https://gitlab.com/Kwoth/nadekobot.git
				synced 2025-11-04 00:34:26 -05:00 
			
		
		
		
	fix: .coins will no longer show double minus sign for negative changes
This commit is contained in:
		@@ -238,6 +238,6 @@ public partial class Searches
 | 
			
		||||
            => value > 0 ? "▲" : "▼";
 | 
			
		||||
 | 
			
		||||
        private static string GetSign(decimal value)
 | 
			
		||||
            => value >= 0 ? "+" : "-";
 | 
			
		||||
            => value >= 0 ? "+" : "";
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user