mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-13 00:09:08 +02:00
The Game Command
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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!');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user