add {{arg::*}} to replace missing args with empty string

This commit is contained in:
LenAnderson
2024-07-05 19:14:30 -04:00
parent 88718d89bc
commit 3144c219fa
2 changed files with 2 additions and 0 deletions

View File

@ -1297,6 +1297,7 @@ export class QuickReply {
for (const key of Object.keys(args)) {
scope.setMacro(`arg::${key}`, args[key]);
}
scope.setMacro('arg::*', '');
if (isEditor) {
this.abortController = new SlashCommandAbortController();
}