From 90e9f47899702ae9d56b0bb5fb960e1511b64166 Mon Sep 17 00:00:00 2001 From: Archi Date: Wed, 15 Nov 2023 00:02:26 +0100 Subject: [PATCH] Add default implementation for IBotsComparer --- ArchiSteamFarm/Plugins/Interfaces/IBotsComparer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }