Skip to content

Commit

Permalink
Add default implementation for IBotsComparer
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Nov 14, 2023
1 parent 185d7ad commit 90e9f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArchiSteamFarm/Plugins/Interfaces/IBotsComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// </summary>
/// <returns>Comparer that will be used for the bots, as well as bot regexes.</returns>
StringComparer BotsComparer { get; }
StringComparer BotsComparer => StringComparer.Ordinal;
}

0 comments on commit 90e9f47

Please sign in to comment.