diff --git a/src/NadekoBot/Common/Replacements/Replacer.cs b/src/NadekoBot/Common/Replacements/Replacer.cs index f1de1dd6e..d80f43674 100644 --- a/src/NadekoBot/Common/Replacements/Replacer.cs +++ b/src/NadekoBot/Common/Replacements/Replacer.cs @@ -69,7 +69,8 @@ namespace NadekoBot.Common.Replacements var newF = new SmartTextEmbedField(); newF.Name = Replace(f.Name); newF.Value = Replace(f.Value); - fields.Add(newF); + newF.Inline = f.Inline; + fields.Add(newF);g } newEmbedData.Fields = fields.ToArray();