From 3ceceb27372a03ecc675793b1e800ef40134992c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 8 Apr 2020 23:53:11 -0400 Subject: [PATCH] 4 guesses in google-feud --- commands/games-sp/google-feud.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-sp/google-feud.js b/commands/games-sp/google-feud.js index 2c7fbffc..7e0f883a 100644 --- a/commands/games-sp/google-feud.js +++ b/commands/games-sp/google-feud.js @@ -41,7 +41,7 @@ module.exports = class GoogleFeudCommand extends Command { const suggestions = await this.fetchSuggestions(question); if (!suggestions) return msg.say('Could not find any results.'); const display = new Array(suggestions.length).fill('???'); - let tries = 3; + let tries = 4; while (display.includes('???') && tries) { const embed = this.makeEmbed(question, tries, suggestions, display); await msg.embed(embed); diff --git a/package.json b/package.json index 25551956..d4b47b7e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "112.19.11", + "version": "112.19.12", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {