From ae73df674b69141ec4fc1daffc14b79d49f9bee2 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Fri, 20 Jan 2017 22:56:16 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Program.cs b/ArchiSteamFarm/Program.cs index 2657e49cf..ab7f6dd07 100644 --- a/ArchiSteamFarm/Program.cs +++ b/ArchiSteamFarm/Program.cs @@ -235,7 +235,7 @@ namespace ArchiSteamFarm { currentResourceSetCount = currentResourceSet.Cast().Count(); } - if ((currentResourceSetCount < defaultResourceSetCount) && (defaultResourceSetCount > 0)) { + if (currentResourceSetCount < defaultResourceSetCount) { float translationCompleteness = currentResourceSetCount / (float) defaultResourceSetCount; ArchiLogger.LogGenericInfo(string.Format(Strings.TranslationIncomplete, CultureInfo.CurrentCulture.Name, translationCompleteness.ToString("P1"))); }