From 7ca1e5344c70f524fe879f054acb74ac224486ca Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 29 Nov 2020 23:02:05 -0500
Subject: [PATCH] tip

---
 src/events/intro/pcAppearance.js | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/events/intro/pcAppearance.js b/src/events/intro/pcAppearance.js
index 40da5b51fc4..78356055597 100644
--- a/src/events/intro/pcAppearance.js
+++ b/src/events/intro/pcAppearance.js
@@ -133,9 +133,11 @@ App.UI.Player.design = function() {
 		App.Events.addNode(el, r, "p");
 	}
 
-	options.addOption("Player aging is", "playerAging")
-		.addValue("Enabled", 2).on().addValue("Celebrate birthdays, but don't age.", 1).neutral().addValue("Disabled", 0).off()
-		.addComment("This option cannot be changed during the game.");
+	option = options.addOption("Player aging is", "playerAging")
+		.addValue("Enabled", 2).on().addValue("Celebrate birthdays, but don't age.", 1).neutral().addValue("Disabled", 0).off();
+	if (!V.cheatMode) {
+		option.addComment("This option cannot be changed during the game.");
+	}
 
 	if (V.PC.customTitle) {
 		options.addOption("Custom title", "customTitle", V.PC).showTextBox()
-- 
GitLab