Add back idiot command

This commit is contained in:
Dragon Fire
2024-05-21 20:40:42 -04:00
parent 123cdf3f21
commit b82e80a19d
4 changed files with 24 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
const Command = require('../../framework/Command');
const { IDIOT_URL } = process.env;
module.exports = class IdiotCommand extends Command {
constructor(client) {
super(client, {
name: 'idiot',
aliases: ['moron'],
group: 'single',
memberName: 'idiot',
description: 'Sends a link to an idiot.'
});
}
run(msg) {
if (!IDIOT_URL) return msg.reply('_Stares at you._')
return msg.say(IDIOT_URL);
}
};