Files
xiao/commands/single/lenny.js
T
Dragon Fire c61ae11679 Fix
2021-06-05 12:50:41 -04:00

17 lines
325 B
JavaScript

const Command = require('../../framework/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('( ͡° ͜ʖ ͡°)');
}
};