Update Searches.cs

remove timestamp
This commit is contained in:
Kevin 2016-12-03 14:54:25 -05:00 committed by GitHub
parent c015b51901
commit 0464c1d724

View File

@ -347,8 +347,7 @@ namespace NadekoBot.Modules.Searches
.WithDescription("Seek advice, you must!") .WithDescription("Seek advice, you must!")
.WithThumbnail(th => th.WithUrl("http://i.imgur.com/62Uh4u6.jpg")) .WithThumbnail(th => th.WithUrl("http://i.imgur.com/62Uh4u6.jpg"))
.AddField(fb => fb.WithName($"🌍 **{umsg.Author.Username}**").WithValue($"{res.ToString()}").WithIsInline(false)) .AddField(fb => fb.WithName($"🌍 **{umsg.Author.Username}**").WithValue($"{res.ToString()}").WithIsInline(false))
.WithColor(NadekoBot.OkColor) .WithColor(NadekoBot.OkColor);
.WithTimestamp(DateTime.Now);
await channel.EmbedAsync(embed.Build()).ConfigureAwait(false); await channel.EmbedAsync(embed.Build()).ConfigureAwait(false);
} }
catch catch