fix missing comma

This commit is contained in:
LenAnderson
2024-04-24 19:20:50 -04:00
parent f6faec1786
commit 85ad3ed165

View File

@@ -1994,7 +1994,7 @@ function migrateSettings() {
})); }));
SlashCommandParser.addCommandObject(SlashCommand.fromProps({ name: 'lastsprite', SlashCommandParser.addCommandObject(SlashCommand.fromProps({ name: 'lastsprite',
callback: (_, value) => lastExpression[value.trim()] ?? '', callback: (_, value) => lastExpression[value.trim()] ?? '',
returns: 'sprite' returns: 'sprite',
unnamedArgumentList: [ unnamedArgumentList: [
new SlashCommandArgument( new SlashCommandArgument(
'charName', [ARGUMENT_TYPE.STRING], true, 'charName', [ARGUMENT_TYPE.STRING], true,