diff --git a/commands/misc/weather.js b/commands/misc/weather.js index f2c991e..1b4de57 100644 --- a/commands/misc/weather.js +++ b/commands/misc/weather.js @@ -8,7 +8,7 @@ module.exports = { message.channel.send(`You have to provide a location`) return; } - let location = args.join() + let location = args.join(" ") let weather = await getWeather(location).catch((err) => { console.log(err); });