From 7807fd67c0e059772e294461eeb55a9bb325eadb Mon Sep 17 00:00:00 2001 From: hornylupus <19674-hornylupus@users.noreply.gitgud.io> Date: Tue, 10 Aug 2021 16:31:55 -0400 Subject: [PATCH] Fix slave cost techreleased --- src/js/slaveCostJS.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js index 37943e5eae6..cd24c41a814 100644 --- a/src/js/slaveCostJS.js +++ b/src/js/slaveCostJS.js @@ -2605,9 +2605,9 @@ globalThis.slaveCostBeauty = (function() { updateMultiplyer(`catgirl`, 0.9); } else if (arcology.FSBodyPurist !== "unset" && arcology.FSBodyPuristCatLaw === 0) { updateMultiplyer(`catgirl`, -0.5); - } else if (arcology.FSBodyPurist !== "unset" && arcology.FSBodyPuristCatLaw === 1 && V.projectN.techreleased === 1) { + } else if (arcology.FSBodyPurist !== "unset" && arcology.FSBodyPuristCatLaw === 1 && V.projectN.techReleased === 1) { updateMultiplyer(`catgirl`, 0.5); - } else if (arcology.FSBodyPurist !== "unset" && arcology.FSBodyPuristCatLaw === 1 && V.projectN.techreleased === 0) { + } else if (arcology.FSBodyPurist !== "unset" && arcology.FSBodyPuristCatLaw === 1 && V.projectN.techReleased === 0) { updateMultiplyer(`catgirl`, 0.9); } if (arcology.FSEgyptianRevivalist !== "unset") { -- GitLab