Fixed remainder typo

This commit is contained in:
raeleus 2024-09-22 20:34:38 -07:00
parent 22dd8b1d1e
commit 554603bd27

View file

@ -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