From 02de25a9315852630811c285809f003df485e766 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Sat, 9 Oct 2021 19:55:19 +0200 Subject: [PATCH] Typo --- src/NadekoBot/Common/Replacements/Replacer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Common/Replacements/Replacer.cs b/src/NadekoBot/Common/Replacements/Replacer.cs index d80f43674..a3e35d4bc 100644 --- a/src/NadekoBot/Common/Replacements/Replacer.cs +++ b/src/NadekoBot/Common/Replacements/Replacer.cs @@ -70,7 +70,7 @@ namespace NadekoBot.Common.Replacements newF.Name = Replace(f.Name); newF.Value = Replace(f.Value); newF.Inline = f.Inline; - fields.Add(newF);g + fields.Add(newF); } newEmbedData.Fields = fields.ToArray();