From bb8e75b47f6d3e34e7b068d1fd7f2ff3a63e1380 Mon Sep 17 00:00:00 2001 From: raeleus Date: Sun, 22 Sep 2024 20:35:21 -0700 Subject: [PATCH] Update Input.js --- Input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Input.js b/Input.js index d969e4d..926f1bf 100644 --- a/Input.js +++ b/Input.js @@ -858,7 +858,7 @@ function doFlipCommandAbility(command) { if (arg0 == null) return; var remainder = getArgumentRemainder(command, 1) - command = `${arg0} "${ability}"${remainder == null ? "" : ` ${remainder}`}` + command = `${arg0} "${ability}"${remainder == null ? "" : " " + remainder}` text = processCommandSynonyms(command, arg0, checkSynonyms, doCheck) if (text == null) text = processCommandSynonyms(command, arg0, trySynonyms, doTry) return text