summaryrefslogtreecommitdiff
path: root/src/commands/bot/suggest.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/bot/suggest.ts')
-rw-r--r--src/commands/bot/suggest.ts26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/commands/bot/suggest.ts b/src/commands/bot/suggest.ts
deleted file mode 100644
index a610a68..0000000
--- a/src/commands/bot/suggest.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { Command, CommandoMessage } from 'discord.js-commando';
-import emoji from 'emoji-random';
-import { MessageEmbed } from 'discord.js';
-
-module.exports = class SuggestBot extends Command {
- constructor(client) {
- super(client, {
- name: 'suggest',
- group: 'bot',
- memberName: 'suggest',
- description: 'Allows you to suggest an addition or change!',
- examples: ['uwu!suggest add more cool commands'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- throttling: {
- usages: 5,
- duration: 30
- },
- });
- }
- run(msg: CommandoMessage) {
- let emb = new MessageEmbed()
- .setDescription(`Thank you for your suggestion! ${emoji.random()}`)
- msg.say(emb)
- }
-}; \ No newline at end of file