mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
17 lines
353 B
JavaScript
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!');
|
|
}
|
|
};
|