forked from Supositware/Haha-Yes
despacito
This commit is contained in:
parent
62b5ec211c
commit
4c86aa19d9
1 changed files with 15 additions and 0 deletions
15
commands/fun/despacito.js
Normal file
15
commands/fun/despacito.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
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');
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue