2019-03-26 22:05:34 +01:00
|
|
|
const { Command } = require('discord-akairo');
|
|
|
|
|
|
|
|
class levertownedCommand extends Command {
|
|
|
|
constructor() {
|
|
|
|
super('levertowned', {
|
2019-05-13 18:02:24 +02:00
|
|
|
aliases: ['levertowned', 'levertard', 'nooberton', 'leverfart'],
|
2019-03-26 22:05:34 +01:00
|
|
|
category: 'hidden',
|
|
|
|
description: {
|
|
|
|
content: 'levertowned',
|
|
|
|
usage: '',
|
|
|
|
examples: ['']
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async exec(message) {
|
|
|
|
return message.channel.send('Hello buddy bro <:youngtroll:488559163832795136> <@434762632004894746>');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = levertownedCommand;
|