This commit is contained in:
Daniel Odendahl Jr
2017-12-13 16:11:09 +00:00
parent 5ab259366b
commit e7e64b5028
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ module.exports = class ForecastCommand extends Command {
.setTimestamp();
for (let i = 0; i < 6; i++) {
const forecast = data.item.forecast[i];
embed.addField(` ${forecast.day} - ${forecast.data}`,
embed.addField(` ${forecast.day} - ${forecast.date}`,
stripIndents`
**High**: ${forecast.high}°F
**Low**: ${forecast.low}°F
+1 -1
View File
@@ -46,7 +46,7 @@ module.exports = class WeatherCommand extends Command {
.addField(' Condition',
data.item.condition.text, true)
.addField(' Temperature',
`${data.item.condition.temp}°F`, true)
`${data.item.condition.temp}°F`, true)
.addField(' Humidity',
data.atmosphere.humidity, true)
.addField(' Pressure',