From 4f1abd1791dbd93b2ce8565accd6e3b61118a54c Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 23 Mar 2017 03:53:39 +0000 Subject: [PATCH] =?UTF-8?q?Forecast=20Highs=20and=20Lows=20have=20the=20?= =?UTF-8?q?=C2=B0F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/search/forecast.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/commands/search/forecast.js b/commands/search/forecast.js index ba1f9285..f6d75dcb 100644 --- a/commands/search/forecast.js +++ b/commands/search/forecast.js @@ -29,19 +29,19 @@ module.exports = class ForecastCommand extends commando.Command { .setURL(info.link) .setTimestamp() .addField(`**${info.item.forecast[0].day} - ${info.item.forecast[0].date}:**`, - `**High:** ${info.item.forecast[0].high}°F, **Low:** ${info.item.forecast[0].low}F, **Condition:** ${info.item.forecast[0].text}`) + `**High:** ${info.item.forecast[0].high}°F, **Low:** ${info.item.forecast[0].low}°F, **Condition:** ${info.item.forecast[0].text}`) .addField(`**${info.item.forecast[1].day} - ${info.item.forecast[1].date}:**`, - `**High:** ${info.item.forecast[1].high}°F, **Low:** ${info.item.forecast[1].low}F, **Condition:** ${info.item.forecast[1].text}`) + `**High:** ${info.item.forecast[1].high}°F, **Low:** ${info.item.forecast[1].low}°F, **Condition:** ${info.item.forecast[1].text}`) .addField(`**${info.item.forecast[2].day} - ${info.item.forecast[2].date}:**`, - `**High:** ${info.item.forecast[2].high}°F, **Low:** ${info.item.forecast[2].low}F, **Condition:** ${info.item.forecast[2].text}`) + `**High:** ${info.item.forecast[2].high}°F, **Low:** ${info.item.forecast[2].low}°F, **Condition:** ${info.item.forecast[2].text}`) .addField(`**${info.item.forecast[3].day} - ${info.item.forecast[3].date}:**`, - `**High:** ${info.item.forecast[3].high}°F, **Low:** ${info.item.forecast[3].low}F, **Condition:** ${info.item.forecast[3].text}`) + `**High:** ${info.item.forecast[3].high}°F, **Low:** ${info.item.forecast[3].low}°F, **Condition:** ${info.item.forecast[3].text}`) .addField(`**${info.item.forecast[4].day} - ${info.item.forecast[4].date}:**`, - `**High:** ${info.item.forecast[4].high}°F, **Low:** ${info.item.forecast[4].low}F, **Condition:** ${info.item.forecast[4].text}`) + `**High:** ${info.item.forecast[4].high}°F, **Low:** ${info.item.forecast[4].low}°F, **Condition:** ${info.item.forecast[4].text}`) .addField(`**${info.item.forecast[5].day} - ${info.item.forecast[5].date}:**`, - `**High:** ${info.item.forecast[5].high}°F, **Low:** ${info.item.forecast[5].low}F, **Condition:** ${info.item.forecast[5].text}`) + `**High:** ${info.item.forecast[5].high}°F, **Low:** ${info.item.forecast[5].low}°F, **Condition:** ${info.item.forecast[5].text}`) .addField(`**${info.item.forecast[6].day} - ${info.item.forecast[6].date}:**`, - `**High:** ${info.item.forecast[6].high}°F, **Low:** ${info.item.forecast[6].low}F, **Condition:** ${info.item.forecast[6].text}`); + `**High:** ${info.item.forecast[6].high}°F, **Low:** ${info.item.forecast[6].low}°F, **Condition:** ${info.item.forecast[6].text}`); message.channel.sendEmbed(embed).catch(console.error); }).catch(err => { message.channel.send(":x: Error! Make sure you typed the location correctly!");