diff --git a/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw b/src/cheats/PCCheatMenuCheatDatatypeCleanup.tw
index 005c0e3a00652c292e405f25d89be27537382be0..2d5b64ae8023dbb82b5c4f71e859cf27500d56de 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 6a7cca4b4e2858098f57648dcf3de2891b2634de..a228e653b822381ef65e633464539488cdede8e8 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 7269cfb1798b1070c32ab413a40a4fa274d2fb17..b05b79d2a10f51fd3058e54c5a1b3403406a967a 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
+};