From 5c80c5cd05602864dab811344b038dd9cf79e81d Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 7 Dec 2023 12:22:15 +0100 Subject: [PATCH] Move right parenthesis to the correct place --- 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 3b4746e..8026ddc 100644 --- a/commands/misc/weather.js +++ b/commands/misc/weather.js @@ -23,7 +23,7 @@ module.exports = { if(weather?.success){ let tempInCelsius = weather.weather.match(tempRegex)[0]; let tempInFahrenheit = Math.round(tempInCelsius * 1.8 + 32); - weather.weather = weather.weather.replace("°C", `°C (${tempInFahrenheit})°F`) + weather.weather = weather.weather.replace("°C", `°C (${tempInFahrenheit}°F)`) } message.channel.send(weather.weather); }