From 58249a09ba7feb3ba13707296c1b4f7399c30a91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= Date: Sat, 8 Sep 2018 02:31:48 +0200 Subject: [PATCH] very yes --- commands/fun/yes.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 commands/fun/yes.js diff --git a/commands/fun/yes.js b/commands/fun/yes.js new file mode 100644 index 00000000..d463ddfd --- /dev/null +++ b/commands/fun/yes.js @@ -0,0 +1,15 @@ +const { Command } = require('discord.js-commando'); +module.exports = class YesCommand extends Command { + constructor(client) { + super(client, { + name: 'yes', + group: 'fun', + memberName: 'yes', + description: 'very yes', + }); + } + + run(message) { + return message.say('haha very yes'); + } +}; \ No newline at end of file