Add direct indicator to type yes/no in akinator

This commit is contained in:
Dragon Fire
2020-09-15 10:17:05 -04:00
parent 53f14cfdae
commit d2249b41a2
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -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);
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "119.24.0",
"version": "119.24.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {