Always reject trades from blacklisted users

This commit is contained in:
JustArchi
2017-08-26 02:48:28 +02:00
parent 0b37323a5f
commit a89c6e630c
4 changed files with 12 additions and 9 deletions

View File

@@ -111,7 +111,7 @@ namespace ArchiSteamFarm {
result = Console.ReadLine();
break;
default:
ASF.ArchiLogger.LogGenericWarning(string.Format(Strings.WarningUnknownValuePleaseReport, nameof(userInputType), userInputType));
ASF.ArchiLogger.LogGenericError(string.Format(Strings.WarningUnknownValuePleaseReport, nameof(userInputType), userInputType));
Console.Write(Bot.FormatBotResponse(string.Format(Strings.UserInputUnknown, userInputType), botName));
result = Console.ReadLine();
break;