From 0464c1d7244e7a7bef9ffa0842bb0e379a6fa906 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 3 Dec 2016 14:54:25 -0500 Subject: [PATCH] Update Searches.cs remove timestamp --- src/NadekoBot/Modules/Searches/Searches.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Searches/Searches.cs b/src/NadekoBot/Modules/Searches/Searches.cs index ed45e0eb..9dca0558 100644 --- a/src/NadekoBot/Modules/Searches/Searches.cs +++ b/src/NadekoBot/Modules/Searches/Searches.cs @@ -347,8 +347,7 @@ namespace NadekoBot.Modules.Searches .WithDescription("Seek advice, you must!") .WithThumbnail(th => th.WithUrl("http://i.imgur.com/62Uh4u6.jpg")) .AddField(fb => fb.WithName($"🌍 **{umsg.Author.Username}**").WithValue($"{res.ToString()}").WithIsInline(false)) - .WithColor(NadekoBot.OkColor) - .WithTimestamp(DateTime.Now); + .WithColor(NadekoBot.OkColor); await channel.EmbedAsync(embed.Build()).ConfigureAwait(false); } catch