From 91d47df46c27d7129fc4d08a5b10c606fc36b87e Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 9 Aug 2021 13:26:28 -0400
Subject: [PATCH] text fixes

---
 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 5572f8928f0..83f460b7ed4 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -2789,12 +2789,12 @@ globalThis.slaveCostBeauty = (function() {
 		const totalInt = Math.clamp(slave.intelligence + slave.intelligenceImplant, -130, 130);
 		/* make absolutely certain we do not use +-131 in the next line
 		 */
-		updateMultiplyer(`fix`, Math.floor((Math.asin(totalInt / 131)) * 50) / 50);
+		updateMultiplyer(`intelligence`, Math.floor((Math.asin(totalInt / 131)) * 50) / 50);
 		if (slave.pubertyXY === 0 && slave.physicalAge >= V.potencyAge && slave.genes === "XY" && arcology.FSGenderRadicalist === "unset") {
 			updateMultiplyer(`child`, 0.5);
 		}
 		if (slave.geneticQuirks.albinism === 2) {
-			updateMultiplyer(`albanism`, 0.2);
+			updateMultiplyer(`albinism`, 0.2);
 		}
 		if (V.rep > 10000) {
 			updateMultiplyer(`high rep brand`, 0.1 * (Object.getOwnPropertyNames(slave.brand).length));
-- 
GitLab