From e4d374312dd650b2c7006e2be227f4462e4d681e Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Mon, 10 Aug 2020 01:40:01 -0700
Subject: [PATCH] Bugfixes

---
 src/cheats/PCCheatMenuCheatDatatypeCleanup.tw | 2 +-
 src/endWeek/saTakeClasses.js                  | 4 ++--
 src/js/utilsFC.js                             | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw b/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw
index 005c0e3a006..2d5b64ae802 100644
--- a/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw
+++ b/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw
@@ -71,7 +71,7 @@
 You perform the dark rituals, pray to the dark gods, and sell your soul for the power to reshape your body and life at will. What a cheater!
 
 <<set $PC = clone($tempSlave)>>
-<<run ibc.recalculate_id(-1)>>
+<<run ibc.recalculate_coeff_id(-1)>>
 <<run PCDatatypeCleanup()>>
 <<set $upgradeMultiplierArcology = upgradeMultiplier('engineering')>>
 <<set $upgradeMultiplierMedicine = upgradeMultiplier('medicine')>>
diff --git a/src/endWeek/saTakeClasses.js b/src/endWeek/saTakeClasses.js
index 6a7cca4b4e2..a228e653b82 100644
--- a/src/endWeek/saTakeClasses.js
+++ b/src/endWeek/saTakeClasses.js
@@ -497,7 +497,7 @@ App.SlaveAssignment.takeClasses = (function() {
 					break;
 				case "Recruiter":
 					if (slave.skill.recruiter <= 10) {
-						r += ` The tutor starts teaching ${him} the basics. ${He} is given lessons on conversing, pronounciation, style and fashion.`;
+						r += ` The tutor starts teaching ${him} the basics. ${He} is given lessons on conversing, pronunciation, style and fashion.`;
 					} else if (slave.skill.recruiter <= 30) {
 						r += ` Having been taught the basics by ${his} tutor, ${he} is no longer awkard in conversation. But ${he} has a long way to go, the tutor teaches ${him} how to carry ${himself} and how to interpret others' non-verbal cues.`;
 					} else if (slave.skill.recruiter <= 60) {
@@ -642,7 +642,7 @@ App.SlaveAssignment.takeClasses = (function() {
 					r += `tutorLessons ERROR unknown skill`;
 			}
 		} else {
-			r += `You did not have enough credits for private tutoring.`
+			r += `You did not have enough credits for private tutoring.`;
 		}
 	}
 
diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js
index 7269cfb1798..b05b79d2a10 100644
--- a/src/js/utilsFC.js
+++ b/src/js/utilsFC.js
@@ -2828,7 +2828,7 @@ globalThis.tutorForSlave = function(slave) {
 		}
 	}
 	return null;
-}
+};
 
 globalThis.upgradeMultiplier = function(skill) {
 	if (skill === 'medicine' && V.PC.career === "medicine" || skill === 'engineering' && V.PC.career === "engineer"
@@ -3441,4 +3441,4 @@ globalThis.deflate = function(slave) {
 	slave.milkSource = 0;
 	slave.cumSource = 0;
 	SetBellySize(slave);
-};
\ No newline at end of file
+};
-- 
GitLab