From b805c3faeff05e8d73ac3b4b64cb586608cf1b8a Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 19 Sep 2017 21:51:49 +0000 Subject: [PATCH] Beep --- commands/games/akinator.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games/akinator.js b/commands/games/akinator.js index 181a460e..d1c54c74 100644 --- a/commands/games/akinator.js +++ b/commands/games/akinator.js @@ -19,7 +19,7 @@ module.exports = class AkinatorCommand extends Command { if (this.sessions.has(msg.channel.id)) return msg.say('Only one game may be occuring per channel.'); try { let ans = null; - this.sessions.set(msg.channel.id, { progress: null }); + this.sessions.set(msg.channel.id, { progress: null }); while (this.sessions.get(msg.channel.id).progress < 99) { const data = ans === null ? await this.createSession(msg.channel) : await this.progress(msg.channel, ans); if (this.sessions.get(msg.channel.id).step >= 80) break; diff --git a/package.json b/package.json index c287e0a9..2c942615 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "41.1.1", + "version": "41.1.2", "description": "Your personal server companion.", "main": "Shard.js", "scripts": {