summaryrefslogtreecommitdiff
path: root/src/commands/fun/respect.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/respect.js')
-rw-r--r--src/commands/fun/respect.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/commands/fun/respect.js b/src/commands/fun/respect.js
new file mode 100644
index 0000000..863c9b0
--- /dev/null
+++ b/src/commands/fun/respect.js
@@ -0,0 +1,21 @@
+const { Command } = require('discord.js-commando');
+
+module.exports = class RespectFun extends Command {
+ constructor(client) {
+ super(client, {
+ name: 'respect',
+ aliases: ['f'],
+ group: 'fun',
+ memberName: 'respect',
+ description: 'press f to pay respects',
+ examples: ['s5n!respect', 's5n!f'],
+ guildOnly: true
+ });
+ }
+ run(msg) {
+ msg.channel.send('press f to pay respects').then(m => {
+ m.react('🇫');
+ msg.delete();
+ });
+ }
+}; \ No newline at end of file