From 0253c408e7bbebeb57e047be1da2d142414ef790 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sat, 28 Nov 2020 00:11:27 -0500
Subject: [PATCH] embedded variable

---
 src/events/intro/introSummary.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/events/intro/introSummary.js b/src/events/intro/introSummary.js
index 48dc32c0430..6cabe488c84 100644
--- a/src/events/intro/introSummary.js
+++ b/src/events/intro/introSummary.js
@@ -575,7 +575,7 @@ App.Intro.summary = function() {
 		V.minimumSlaveAge = Math.clamp(V.minimumSlaveAge, 3, 18);
 		options.addOption("Girls appearing in the game will be no younger than", "minimumSlaveAge").showTextBox();
 
-		options.addOption("Molestation of slaves younger than V.minimumSlaveAge is", "extremeUnderage")
+		options.addOption(`Molestation of slaves younger than ${V.minimumSlaveAge} is`, "extremeUnderage")
 			.addValue("Permitted", 1).on().addValue("Forbidden", 0).off();
 
 		V.retirementAge = Math.clamp(V.retirementAge, V.minimumSlaveAge + 1, 120);
-- 
GitLab