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/fun/despacito.js

15 lines
440 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class DespacitoCommand extends Command {
constructor(client) {
super(client, {
name: 'despacito',
group: 'fun',
memberName: 'despacito',
description: 'despacito, what where you excepting?',
});
}
run(message) {
return message.say('https://www.youtube.com/watch?v=W3GrSMYbkBE');
}
};