diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index c74811905..682f3e5cf 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -737,7 +737,7 @@ namespace ArchiSteamFarm { HashSet result = new HashSet(); foreach (string botName in botNames.Where(botName => !string.IsNullOrEmpty(botName))) { - if (botName.Equals(SharedInfo.ASF)) { + if (botName.Equals(SharedInfo.ASF, StringComparison.OrdinalIgnoreCase)) { foreach (Bot bot in Bots.OrderBy(bot => bot.Key).Select(bot => bot.Value)) { result.Add(bot); }