diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index 5572f8928f08567a601d325f2e64f093b597846b..83f460b7ed487f196f19e747861737b3bfd7b6d4 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));