Files
xiao/commands/single/lenny.js
T
2018-05-30 12:04:21 +00:00

17 lines
326 B
JavaScript

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