21 lines
No EOL
489 B
JavaScript
21 lines
No EOL
489 B
JavaScript
const { Command } = require('discord-akairo');
|
|
|
|
class levertownedCommand extends Command {
|
|
constructor() {
|
|
super('levertowned', {
|
|
aliases: ['levertowned', 'levertard', 'nooberton', 'leverfart'],
|
|
category: 'hidden',
|
|
description: {
|
|
content: 'levertowned',
|
|
usage: '',
|
|
examples: ['']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message) {
|
|
return message.channel.send('Hello buddy bro <:youngtroll:488559163832795136> <@434762632004894746>');
|
|
}
|
|
}
|
|
|
|
module.exports = levertownedCommand; |