From 7b0473456e5eae0569d678ff9c97cd079ad22b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= Date: Sat, 30 Mar 2019 04:43:58 +0100 Subject: [PATCH] removed that command, it sucked anyway --- commands/general/token.js | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 commands/general/token.js diff --git a/commands/general/token.js b/commands/general/token.js deleted file mode 100644 index ddc0a83..0000000 --- a/commands/general/token.js +++ /dev/null @@ -1,22 +0,0 @@ -const { Command } = require('discord-akairo'); - -class tokenCommand extends Command { - constructor() { - super('token', { - aliases: ['token'], - category: 'general', - description: { - content: 'Send the token of the bot', - usage: '', - examples: [''] - } - }); - } - - async exec(message) { - let trollMessage = ['Sick you thought <:youngtroll:488559163832795136>', 'Haha nope\nOWNED EPIC STYLE <:youngtroll:488559163832795136>', 'NDg3MzQyOD__NOPE__pkz5_ck', 'Did you think i was that dumb?']; - trollMessage = trollMessage[Math.floor( Math.random() * trollMessage.length )]; - message.channel.send(trollMessage); - } -} -module.exports = tokenCommand; \ No newline at end of file