diff --git a/commands/search/forecast.js b/commands/search/forecast.js index d2a6f608..0da7fe58 100644 --- a/commands/search/forecast.js +++ b/commands/search/forecast.js @@ -30,7 +30,7 @@ module.exports = class ForecastCommand extends Command { const forecasts = body.query.results.channel.item.forecast; const embed = new RichEmbed() .setColor(0x0000FF) - .setAuthor(body.query.results.channel.title, 'http://media.idownloadblog.com/wp-content/uploads/2013/12/yahoo-weather-213x220.png') + .setAuthor(body.query.results.channel.title, 'https://i.imgur.com/2MT0ViC.png') .setURL(body.query.results.channel.link) .setTimestamp() .addField(`**${forecasts[0].day} - ${forecasts[0].date}:**`, diff --git a/commands/search/weather.js b/commands/search/weather.js index 99f1b4ed..22683b47 100644 --- a/commands/search/weather.js +++ b/commands/search/weather.js @@ -29,7 +29,7 @@ module.exports = class WeatherCommand extends Command { .get(`https://query.yahooapis.com/v1/public/yql?q=select * from weather.forecast where u=\'f\' AND woeid in (select woeid from geo.places(1) where text="${query}")&format=json`); const embed = new RichEmbed() .setColor(0x0000FF) - .setAuthor(body.query.results.channel.title, 'http://media.idownloadblog.com/wp-content/uploads/2013/12/yahoo-weather-213x220.png') + .setAuthor(body.query.results.channel.title, 'https://i.imgur.com/2MT0ViC.png') .setURL(body.query.results.channel.link) .setTimestamp() .addField('**City:**', diff --git a/package.json b/package.json index f01e38c6..604f900b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "18.0.1", + "version": "18.0.2", "description": "A Discord Bot", "main": "shardingmanager.js", "scripts": {