From c26f04891109d0d9b31fee10b88d857243e783fb Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 6 Jun 2017 21:26:33 +0000 Subject: [PATCH] Inline Forecast --- commands/search/forecast.js | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/commands/search/forecast.js b/commands/search/forecast.js index 41b4da71..3346b50d 100644 --- a/commands/search/forecast.js +++ b/commands/search/forecast.js @@ -41,43 +41,43 @@ module.exports = class ForecastCommand extends Command { **High:** ${forecasts[0].high}°F **Low:** ${forecasts[0].low}°F **Condition:** ${forecasts[0].text} - `) + `, true) .addField(`❯ ${forecasts[1].day} - ${forecasts[1].date}`, stripIndents` **High:** ${forecasts[1].high}°F **Low:** ${forecasts[1].low}°F **Condition:** ${forecasts[1].text} - `) + `, true) .addField(`❯ ${forecasts[2].day} - ${forecasts[2].date}`, stripIndents` **High:** ${forecasts[2].high}°F **Low:** ${forecasts[2].low}°F **Condition:** ${forecasts[2].text} - `) + `, true) .addField(`❯ ${forecasts[3].day} - ${forecasts[3].date}`, stripIndents` **High:** ${forecasts[3].high}°F **Low:** ${forecasts[3].low}°F **Condition:** ${forecasts[3].text} - `) + `, true) .addField(`❯ ${forecasts[4].day} - ${forecasts[4].date}`, stripIndents` **High:** ${forecasts[4].high}°F **Low:** ${forecasts[4].low}°F **Condition:** ${forecasts[4].text} - `) + `, true) .addField(`❯ ${forecasts[5].day} - ${forecasts[5].date}`, stripIndents` **High:** ${forecasts[5].high}°F **Low:** ${forecasts[5].low}°F **Condition:** ${forecasts[5].text} - `) + `, true) .addField(`❯ ${forecasts[6].day} - ${forecasts[6].date}`, stripIndents` **High:** ${forecasts[6].high}°F **Low:** ${forecasts[6].low}°F **Condition:** ${forecasts[6].text} - `); + `, true); return msg.embed(embed); } }; diff --git a/package.json b/package.json index 68170f65..ab9f089f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "22.1.3", + "version": "22.1.4", "description": "A Discord Bot", "main": "Shard.js", "scripts": {