diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js
index 3d68889032dabacb3738a628e6664136456ccf82..4c0d092eb2b73e7b8be34e0a210ad00edcbc826f 100644
--- a/src/npc/startingGirls/startingGirls.js
+++ b/src/npc/startingGirls/startingGirls.js
@@ -1230,7 +1230,7 @@ App.StartingGirls.profile = function(slave, cheat = false) {
 			["Regionally famous", 2],
 			["World renowned", 3]
 		]);
-	if (slave.prestige > 0) {
+	if (slave.prestige > 0 && !cheat) {
 		const r = [];
 		r.push("Starting slaves incur an extreme cost penalty for prestige. This slave's");
 		if (slave.actualAge >= 25) {
@@ -1299,7 +1299,7 @@ App.StartingGirls.mental = function(slave, cheat = false) {
 
 	option = options.addOption("Devotion", "devotion", slave);
 	App.StartingGirls.addSet(option, App.Data.StartingGirls.devotion);
-	if (slave.devotion > 20) {
+	if (slave.devotion > 20 && !cheat) {
 		r = [];
 		r.push("Starting slaves incur");
 		if (slave.devotion > 50) {
@@ -1399,7 +1399,7 @@ App.StartingGirls.mental = function(slave, cheat = false) {
 };
 
 /**
- * @param {App.Entity.SlaveState}slave
+ * @param {App.Entity.SlaveState} slave
  * @param {boolean} cheat
  * @returns {HTMLDivElement}
  */
@@ -1441,7 +1441,7 @@ App.StartingGirls.skills = function(slave, cheat = false) {
 	const totalSkill = slave.skill.whoring + slave.skill.entertainment + slave.skill.vaginal
 		+ slave.skill.anal + slave.skill.oral + (slave.skill.combat * 100);
 
-	if (totalSkill > 200) {
+	if (totalSkill > 200 && !cheat) {
 		let comment = ["Starting slaves incur"];
 		if (totalSkill > 400) {
 			comment.push("a severe cost penalty for being highly");
@@ -1464,7 +1464,7 @@ App.StartingGirls.skills = function(slave, cheat = false) {
 };
 
 /**
- * @param {App.Entity.SlaveState}slave
+ * @param {App.Entity.SlaveState} slave
  * @returns {DocumentFragment}
  */
 App.StartingGirls.finalize = function(slave) {