1
0
Fork 0

renamed the "test" embed

Commando
loicbersier 6 years ago
parent 881a855cdc
commit 7b3bedc08c

@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const Discord = require('discord.js');
const snekfetch = require('snekfetch');
const { openweatherAPI } = require('./config.json');
const { openweatherAPI } = require('../../config.json');
module.exports = class WeatherCommand extends Command {
constructor(client) {
super(client, {
@ -24,7 +24,7 @@ module.exports = class WeatherCommand extends Command {
if (!body.main.temp) {
return message.say(`No results found for **${city}**`);
}
const test = new Discord.RichEmbed()
const weatherEmbed = new Discord.RichEmbed()
.setColor("#ff9900")
.setTitle(body.name + ' current weather')
.setDescription(body.main.temp + '°c')
@ -32,6 +32,6 @@ module.exports = class WeatherCommand extends Command {
.addField('Temp max', body.main.temp_max + '°c')
message.say(test);
message.say(weatherEmbed);
}
};
Loading…
Cancel
Save