From da21308345bfd0bfd4f56e72d91441166c27ac4c Mon Sep 17 00:00:00 2001 From: fkndean Date: Tue, 29 Nov 2016 09:01:06 -0500 Subject: [PATCH] Fix to match Kwoth's d.net changes. --- src/NadekoBot/Modules/Utility/Utility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Utility/Utility.cs b/src/NadekoBot/Modules/Utility/Utility.cs index 988fdcb3..49f54e4b 100644 --- a/src/NadekoBot/Modules/Utility/Utility.cs +++ b/src/NadekoBot/Modules/Utility/Utility.cs @@ -182,7 +182,7 @@ namespace NadekoBot.Modules.Utility .WithImage(tn => tn.Url = "https://lh3.googleusercontent.com/-TDLUR4j7q20/V8u0E7CDUyI/AAAAAAAAAbQ/1pmQ256Cbdg324gU_ecvqdPMsmIBST-gwCJoC/w895-h504/rol%2B1-A.png") .WithFooter(fb => fb.WithIconUrl("https://media0.giphy.com/media/JIu5iDNbCeLsI/200_s.gif").WithText("Nadeko")) .WithTimestamp(DateTime.Now); - await channel.SendMessageAsync("-", embed: embed); + await channel.SendMessageAsync("-", embed: embed.Build()); } private Regex emojiFinder { get; } = new Regex(@"<:(?.+?):(?\d*)>", RegexOptions.Compiled);