From aab6155ab9e113500d97b272b887dc95fd8d23f7 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Mon, 21 Sep 2020 21:25:13 -0400 Subject: [PATCH] boobDesc fix --- src/npc/descriptions/boobs/boobs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js index e11f9a64526..e4797f9324e 100644 --- a/src/npc/descriptions/boobs/boobs.js +++ b/src/npc/descriptions/boobs/boobs.js @@ -743,7 +743,7 @@ App.Desc.boobs = function() { } else if (slave.boobs > 800) { r += `${slave.slaveName}'s ${adjNoun} create a noticeable swell at the front of ${his} ultra-heavy armor.`; } else { - r += `${slave.slaveName}'s chest appears perfectly flat beneath ${his} ultra-heavy Imperial armor. ${slave.boobs < 300 ? `${His} ${App.Desc.boobBits.adjective(slave.boobs)} You can't even notice ${his} breasts, elegantly concealed by the massive plating.` : ''}`; + r += `${slave.slaveName}'s chest appears perfectly flat beneath ${his} ultra-heavy Imperial armor. ${slave.boobs > 300 ? `You can't even notice ${his} breasts, elegantly concealed by the massive plating.` : ''}`; } break; case "a dirndl": -- GitLab