Files
xiao/commands/single/just-do-it.js
T
2018-07-27 10:41:35 -04:00

18 lines
416 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.'
});
}
run(msg) {
return msg.say('https://www.youtube.com/watch?v=ZXsQAXx_ao0');
}
};