From 332696508e4f81edd00cd5c3d1a668146d063149 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 30 Dec 2018 16:42:52 -0600 Subject: [PATCH] Fixed tail vore breaking for more than 4 tails. --- game.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game.js b/game.js index 07845c1..467c3f6 100644 --- a/game.js +++ b/game.js @@ -1055,7 +1055,7 @@ let macro = if (verbose || flat) { prey = flatten(prey); } - + if (this.container.count == 0) return "Your pouch is empty"; else @@ -2968,6 +2968,7 @@ function tail_vore(count) totalPrey = totalPrey.merge(prey); } + let line = describe("tails-vore", totalPrey, macro, verbose, flat).replace("$COUNT", macro.tailCount); lines.push(line); }