Update Searches.cs

This commit is contained in:
samvaio 2016-12-03 23:20:51 +05:30 committed by GitHub
parent 6e00fdee51
commit b37dd86e6e

View File

@ -53,7 +53,7 @@ namespace NadekoBot.Modules.Searches
.AddField(fb => fb.WithName("🔆 Feels like").WithValue($"{obj["feelscentigrade"]}°C ({obj["feelsfahrenheit"]}°F)").WithIsInline(true))
.AddField(fb => fb.WithName("🌄 Sunrise").WithValue($"{obj["sunrise"]}").WithIsInline(true))
.AddField(fb => fb.WithName("🌇 Sunset").WithValue($"{obj["sunset"]}").WithIsInline(true))
.WithColor(NadekoBot.SunColor);
.WithColor(NadekoBot.OkColor);
await channel.EmbedAsync(embed.Build()).ConfigureAwait(false);
}