diff --git a/commands/games-sp/the-game.js b/commands/games-sp/the-game.js new file mode 100644 index 00000000..5211924a --- /dev/null +++ b/commands/games-sp/the-game.js @@ -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!'); + } +}; diff --git a/package.json b/package.json index 277be5cc..72c22cac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "117.5.0", + "version": "117.6.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {