Files
xiao/commands/single/just-do-it.js
T
Daniel Odendahl Jr 45c8d62dd5 Credit Command
2019-04-14 00:03:38 +00:00

24 lines
563 B
JavaScript

const Command = require('../../structures/Command');
module.exports = class JustDoItCommand extends Command {
constructor(client) {
super(client, {
name: 'just-do-it',
aliases: ['motivate'],
group: 'single',
memberName: 'just-do-it',
description: 'Sends a link to the "Just Do It!" motivational speech.',
credit: [
{
name: 'Shia LaBeouf "Just Do It" Motivational Speech',
url: 'https://www.youtube.com/watch?v=ZXsQAXx_ao0'
}
]
});
}
run(msg) {
return msg.say('https://www.youtube.com/watch?v=ZXsQAXx_ao0');
}
};