Files
xiao/commands/games-sp/the-game.js
T
2020-06-29 21:24:22 -04:00

17 lines
353 B
JavaScript

const Command = require('../../structures/Command');
module.exports = class TheGameCommand extends Command {
constructor(client) {
super(client, {
name: 'the-game',
group: 'games-sp',
memberName: 'the-game',
description: 'If you think about the game, you lose.'
});
}
run(msg) {
return msg.reply('You just lost the game!');
}
};