diff --git a/src/commands/mod/sus.ts b/src/commands/mod/sus.ts index 24ee279..098420b 100644 --- a/src/commands/mod/sus.ts +++ b/src/commands/mod/sus.ts @@ -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('✅'); } }