From bf7bf457528d7580c35e1799c37f8508afcfe8d2 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 1 Jan 2019 16:15:52 -0600 Subject: [PATCH] Fixed tails having "are" no matter what --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index cc68536..1a0fe58 100644 --- a/game.js +++ b/game.js @@ -534,7 +534,7 @@ let macro = } if (prey.count == 0) { - return "Your " + this.owner.tailDesc + " are empty."; + return "Your " + this.owner.tailDesc + " " + (this.owner.tailCount > 1 ? "are" : "is") + " empty."; } else { if (this.owner.tailVoreToStomach) { return "Your " + this.owner.tailDesc + " " + (this.owner.tailCount > 1 ? "clench and squeeze around " : "clenches and squeezes around ") + prey.describeSimple(verbose || flat) + ", working them deeper and deeper inside.";