moves persona's alias line upward

This commit is contained in:
Succubyss 2024-07-21 16:19:47 -05:00
parent 455f9b7a3e
commit a712e92125
1 changed files with 1 additions and 1 deletions

View File

@ -95,6 +95,7 @@ export function initDefaultSlashCommands() {
SlashCommandParser.addCommandObject(SlashCommand.fromProps({
name: 'persona',
callback: setNameCallback,
aliases: ['name'],
namedArgumentList: [
new SlashCommandNamedArgument(
'mode', 'The mode for persona selection. ("lookup" = search for existing persona, "temp" = create a temporary name, set a temporary name, "all" = allow both in the same command)',
@ -110,7 +111,6 @@ export function initDefaultSlashCommands() {
}),
],
helpString: 'Selects the given persona with its name and avatar (by name or avatar url). If no matching persona exists, applies a temporary name.',
aliases: ['name'],
}));
SlashCommandParser.addCommandObject(SlashCommand.fromProps({
name: 'sync',