From d2249b41a2564055be41730cdbe582ed696b2387 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 15 Sep 2020 10:17:05 -0400 Subject: [PATCH] Add direct indicator to type yes/no in akinator --- commands/games-sp/akinator.js | 6 +++++- package.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/commands/games-sp/akinator.js b/commands/games-sp/akinator.js index f54aa30b..15667f8a 100644 --- a/commands/games-sp/akinator.js +++ b/commands/games-sp/akinator.js @@ -103,7 +103,11 @@ module.exports = class AkinatorCommand extends Command { const embed = new MessageEmbed() .setColor(0xF78B26) .setTitle(`I'm ${Math.round(guess.proba * 100)}% sure it's...`) - .setDescription(`${guess.name}${guess.description ? `\n_${guess.description}_` : ''}`) + .setDescription(stripIndents` + ${guess.name}${guess.description ? `\n_${guess.description}_` : ''} + + _**Type [y]es or [n]o to continue.**_ + `) .setThumbnail(guess.absolute_picture_path || null) .setFooter(forceGuess ? 'Final Guess' : `Guess ${timesGuessed}`); await msg.embed(embed); diff --git a/package.json b/package.json index c10a32fe..b8830de4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "119.24.0", + "version": "119.24.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {