From 554603bd2707a57e6ecc620064675a9d74003339 Mon Sep 17 00:00:00 2001 From: raeleus Date: Sun, 22 Sep 2024 20:34:38 -0700 Subject: [PATCH] Fixed remainder typo --- Input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Input.js b/Input.js index 6e34b31..d969e4d 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