From 624b16b42edda9574f3137751b98c8f76b60e82a Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 29 Jun 2020 21:24:22 -0400 Subject: [PATCH] The Game Command --- commands/games-sp/the-game.js | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 commands/games-sp/the-game.js 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": {