The Game Command

This commit is contained in:
Dragon Fire
2020-06-29 21:24:22 -04:00
parent 9f47b8b99d
commit 624b16b42e
2 changed files with 17 additions and 1 deletions
+16
View File
@@ -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!');
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "117.5.0",
"version": "117.6.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {