fix cutting off handled part in substitution

This commit is contained in:
LenAnderson
2024-04-20 08:31:19 -04:00
parent 94fa19bd2d
commit c11a0df619

View File

@ -54,7 +54,7 @@ export class SlashCommandClosure {
}
break;
} else {
done = `${before}${replacer}`;
done = `${done}${before}${replacer}`;
remaining = after;
}
}