From 6ee51970fc65a9511a5b0cc4ccc7f4babbca93b8 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Fri, 4 Oct 2024 03:53:56 +0200 Subject: [PATCH] Fix wrong temperature label --- commands/misc/convert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/convert.js b/commands/misc/convert.js index 9e723e7..d142766 100644 --- a/commands/misc/convert.js +++ b/commands/misc/convert.js @@ -23,7 +23,7 @@ module.exports = { case "F": if (args[2].toUpperCase() === "C") { const celsius = ((parseFloat(args[0]) - 32) * 5 / 9).toFixed(2); - sendText = `${args[0]}°C is ${celsius}°F`; + sendText = `${args[0]}°F is ${celsius}°C`; } else { sendText = "Can only convert to fahrenheit from celsius"; }