Files
xiao/commands/random/lenny.js
T
2017-09-29 00:49:17 +00:00

17 lines
325 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class LennyCommand extends Command {
constructor(client) {
super(client, {
name: 'lenny',
group: 'random',
memberName: 'lenny',
description: 'Responds with the lenny face.'
});
}
run(msg) {
return msg.say('( ͡° ͜ʖ ͡°)');
}
};