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'); + }, +};