From 37cf13f375de3026bc4653fcc097e2bfacb48339 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 14 Jun 2017 00:57:19 +0000 Subject: [PATCH] Cats --- commands/games/hangman.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games/hangman.js b/commands/games/hangman.js index 40e2a772..9fc46fc4 100644 --- a/commands/games/hangman.js +++ b/commands/games/hangman.js @@ -17,7 +17,7 @@ module.exports = class HangmanCommand extends Command { let points = 0; const confirmation = []; const display = '_'.repeat(word.length).split(''); - while (word.length !== confirmation.length && points < 6) { + while (word.length !== confirmation.length && points < 7) { await msg.code(null, stripIndents` ___________ | | diff --git a/package.json b/package.json index 4d746030..f5ac59ee 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ }, "homepage": "https://github.com/dragonfire535/xiaobot#readme", "engines": { - "node": "8.0.0" + "node": "8.1.1" }, "dependencies": { "bufferutil": "^3.0.1",