diff --git a/commands/games-mp/battle.js b/commands/games-mp/battle.js index 11a7364e..a9b47358 100644 --- a/commands/games-mp/battle.js +++ b/commands/games-mp/battle.js @@ -13,9 +13,8 @@ module.exports = class BattleCommand extends Command { args: [ { key: 'opponent', - prompt: 'What user would you like to battle?', - type: 'user', - default: () => this.client.user + prompt: 'What user would you like to battle? To play against AI, choose me.', + type: 'user' } ] }); diff --git a/commands/games-mp/chess.js b/commands/games-mp/chess.js index 528aef9b..1cc63272 100644 --- a/commands/games-mp/chess.js +++ b/commands/games-mp/chess.js @@ -34,9 +34,8 @@ module.exports = class ChessCommand extends Command { args: [ { key: 'opponent', - prompt: 'What user would you like to challenge?', - type: 'user', - default: () => this.client.user + prompt: 'What user would you like to challenge? To play against AI, choose me.', + type: 'user' } ] }); diff --git a/commands/games-mp/jenga.js b/commands/games-mp/jenga.js index 250075e5..121c324a 100644 --- a/commands/games-mp/jenga.js +++ b/commands/games-mp/jenga.js @@ -20,9 +20,8 @@ module.exports = class JengaCommand extends Command { args: [ { key: 'opponent', - prompt: 'What user would you like to challenge?', - type: 'user', - default: () => this.client.user + prompt: 'What user would you like to challenge? To play against AI, choose me.', + type: 'user' } ] }); diff --git a/commands/games-mp/nim.js b/commands/games-mp/nim.js index e70086c7..a3a724ef 100644 --- a/commands/games-mp/nim.js +++ b/commands/games-mp/nim.js @@ -14,9 +14,8 @@ module.exports = class NimCommand extends Command { args: [ { key: 'opponent', - prompt: 'What user would you like to challenge?', - type: 'user', - default: () => this.client.user + prompt: 'What user would you like to challenge? To play against AI, choose me.', + type: 'user' }, { key: 'rows', diff --git a/commands/games-mp/pick-a-number.js b/commands/games-mp/pick-a-number.js index 353868e0..167aa59b 100644 --- a/commands/games-mp/pick-a-number.js +++ b/commands/games-mp/pick-a-number.js @@ -13,9 +13,8 @@ module.exports = class PickANumberCommand extends Command { args: [ { key: 'opponent', - prompt: 'What user would you like to play against?', - type: 'user', - default: () => this.client.user + prompt: 'What user would you like to play against? To play against AI, choose me.', + type: 'user' } ] }); diff --git a/commands/games-mp/russian-roulette.js b/commands/games-mp/russian-roulette.js index 3a3fdd21..45564f8a 100644 --- a/commands/games-mp/russian-roulette.js +++ b/commands/games-mp/russian-roulette.js @@ -13,9 +13,8 @@ module.exports = class RussianRouletteCommand extends Command { args: [ { key: 'opponent', - prompt: 'What user would you like to play against?', - type: 'user', - default: () => this.client.user + prompt: 'What user would you like to play against? To play against AI, choose me.', + type: 'user' } ] }); diff --git a/commands/games-mp/tic-tac-toe.js b/commands/games-mp/tic-tac-toe.js index e8dbb78a..92e735f0 100644 --- a/commands/games-mp/tic-tac-toe.js +++ b/commands/games-mp/tic-tac-toe.js @@ -15,9 +15,8 @@ module.exports = class TicTacToeCommand extends Command { args: [ { key: 'opponent', - prompt: 'What user would you like to challenge?', - type: 'user', - default: () => this.client.user + prompt: 'What user would you like to challenge? To play against AI, choose me.', + type: 'user' } ] }); diff --git a/package.json b/package.json index 57db231c..e69beb00 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "126.12.1", + "version": "126.12.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { @@ -51,7 +51,7 @@ "expr-eval": "^2.0.2", "gifencoder": "^2.0.1", "gm": "^1.23.1", - "html-entities": "^2.0.2", + "html-entities": "^2.0.4", "ioredis": "^4.19.4", "js-beautify": "^1.13.4", "js-chess-engine": "^0.6.0",