From 2b4a8029d123ef6d931aec9e57461ae195c99ddb Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Tue, 15 Oct 2024 11:48:40 +0200 Subject: [PATCH] Put space between temperature and unit --- commands/misc/convert.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/misc/convert.js b/commands/misc/convert.js index 9165259..d920f1a 100644 --- a/commands/misc/convert.js +++ b/commands/misc/convert.js @@ -23,7 +23,7 @@ module.exports = { fahrenheit = fahrenheit.replace(".00","") } - sendText = `${initial_number}°C is ${fahrenheit}°F`; + sendText = `${initial_number} °C is ${fahrenheit} °F`; } else { sendText = "Can only convert to celsius from fahrenheit"; } @@ -35,7 +35,7 @@ module.exports = { celsius = celsius.replace(".00","") } - sendText = `${initial_number}°F is ${celsius}°C`; + sendText = `${initial_number} °F is ${celsius} °C`; } else { sendText = "Can only convert to fahrenheit from celsius"; }