added --help functionality to import command

This commit is contained in:
Aster Fialla
2026-02-16 12:50:46 -05:00
parent 07d4e735eb
commit be5505b03c
2 changed files with 6 additions and 0 deletions

View File

@@ -46,6 +46,9 @@ cmds.set('help', {
cmds.set('import', {
description: enums.help.SHORT_DESC_IMPORT,
async execute(message) {
if (message.content.includes('--help')) {
return await message.reply(enums.help.IMPORT);
}
const attachmentUrl = message.attachments.size > 0 ? message.attachments.first().url : null;
return await importHelper.pluralKitImport(message.author.id, attachmentUrl).then(async (successfullyAdded) => {