Files
xiao/commands/single-res/lenny.js
T
dragonfire535 a006a8a8de Lots of changes
2017-10-07 11:18:08 -04:00

17 lines
329 B
JavaScript

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