feat(arabot): add msg to a specific user for sus command

This commit is contained in:
Anthony 2022-09-09 01:08:08 +01:00
parent 05240ae223
commit 152dff72c7

View File

@ -564,6 +564,7 @@ class SusCommand extends Command {
}
// Non Application Command method of adding a sus note
// xlevra begged me to add this... so I guess here it is
public async messageRun(message: Message, args: Args) {
// Get arguments
let user: GuildMember;
@ -603,6 +604,11 @@ class SusCommand extends Command {
await user!.roles.add(IDs.roles.restrictions.sus);
}
// Checks if the user is xlevra to send a very kind message
if (mod.id === '259624904746467329') {
await message.reply('Fuck you for making me add this feature 🤬');
}
await message.react('✅');
}
}