From db29bda6faf20ca76aff8763b336f3fe3856ecfb Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sat, 16 Jan 2021 09:58:55 -0500 Subject: [PATCH] fix birth tat removal gate --- .../bodyModification/bodyModification.js | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/src/facilities/bodyModification/bodyModification.js b/src/facilities/bodyModification/bodyModification.js index 469e4a5ade8..2598ed7939d 100644 --- a/src/facilities/bodyModification/bodyModification.js +++ b/src/facilities/bodyModification/bodyModification.js @@ -588,18 +588,16 @@ App.UI.bodyModification = function(slave, cheat = false) { } else { r.push(`${He} has a single baby-shaped tattoo${(slave.pregKnown === 1) ? `, and one temporary one,` : ``} adorning ${his} stomach.`); } - if (slave.bellyTat !== 0) { - linkArray.push( - App.UI.DOM.link( - "Remove tattoos", - () => { - slave.birthsTat = -1; - billMod(); - refresh(); - } - ) - ); - } + linkArray.push( + App.UI.DOM.link( + "Remove tattoos", + () => { + slave.birthsTat = -1; + billMod(); + refresh(); + } + ) + ); } else if (slave.birthsTat === 0) { if (slave.pregKnown === 1) { r.push(`${He} has a single baby-shaped temporary tattoo adorning ${his} stomach.`); -- GitLab