You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/hidden/levertowned.js

21 lines
476 B
JavaScript

const { Command } = require('discord-akairo');
class levertownedCommand extends Command {
constructor() {
super('levertowned', {
aliases: ['levertowned', '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;