From 1017690396b34b7c57f91b73bb82b92848067a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= Date: Fri, 7 Sep 2018 01:01:20 +0200 Subject: [PATCH] haha yes --- commands/yes.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 commands/yes.js diff --git a/commands/yes.js b/commands/yes.js new file mode 100644 index 00000000..b481fda9 --- /dev/null +++ b/commands/yes.js @@ -0,0 +1,7 @@ +module.exports = { + name: 'ping', + description: 'Ping!', + execute(message) { + message.channel.send('haha yes'); + }, +};