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/sex.js

21 lines
399 B
JavaScript

const { Command } = require('discord-akairo');
class sexCommand extends Command {
constructor() {
super('sex', {
aliases: ['sex', '69'],
category: 'hidden',
description: {
content: 'sex',
usage: '',
examples: ['']
}
});
}
async exec(message) {
return message.reply('69\nHaha lol Le sex numbers xDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD');
}
}
module.exports = sexCommand;