diff --git a/ArchiSteamFarm/Plugins/Interfaces/IBotsComparer.cs b/ArchiSteamFarm/Plugins/Interfaces/IBotsComparer.cs index cd14d3293..33918b2e8 100644 --- a/ArchiSteamFarm/Plugins/Interfaces/IBotsComparer.cs +++ b/ArchiSteamFarm/Plugins/Interfaces/IBotsComparer.cs @@ -31,5 +31,5 @@ public interface IBotsComparer : IPlugin { /// Unless you know what you're doing, you should not implement this property yourself and let ASF decide. /// /// Comparer that will be used for the bots, as well as bot regexes. - StringComparer BotsComparer { get; } + StringComparer BotsComparer => StringComparer.Ordinal; }