From d1903c27e7600fdacffb033344fbfb7397b62722 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sun, 3 Dec 2023 21:19:07 +0100 Subject: [PATCH] Fix comma in weather output --- commands/misc/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); });