From efc37e067e58173ae7314b458bdcb15c0039b4ea Mon Sep 17 00:00:00 2001 From: l1ttleO Date: Fri, 9 Dec 2022 16:35:25 +0500 Subject: [PATCH] spacing! --- Boyfriend/Commands/SettingsCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Boyfriend/Commands/SettingsCommand.cs b/Boyfriend/Commands/SettingsCommand.cs index d2e0a8d..c996ba5 100644 --- a/Boyfriend/Commands/SettingsCommand.cs +++ b/Boyfriend/Commands/SettingsCommand.cs @@ -113,7 +113,7 @@ public sealed class SettingsCommand : ICommand { if (selectedSetting is "Lang" && !Utils.CultureInfoCache.ContainsKey(value)) { var langNotSupported = Boyfriend.StringBuilder.Append($"{Messages.LanguageNotSupported} "); foreach (var lang in Utils.CultureInfoCache) langNotSupported.Append($"`{lang.Key}`, "); - langNotSupported.Remove(langNotSupported.Length-2, 2); + langNotSupported.Remove(langNotSupported.Length - 2, 2); cmd.Reply(langNotSupported.ToString(), ReplyEmojis.Error); langNotSupported.Clear(); return Task.CompletedTask;