From 7426b4e00523f24c0ae1e1d4d14ef41b27a098ec Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Mon, 29 Apr 2019 00:59:14 -0400
Subject: [PATCH] fixed possible mainlinks error

---
 src/interaction/main/mainLinks.js | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/interaction/main/mainLinks.js b/src/interaction/main/mainLinks.js
index 65430da9617..5253093cfd1 100644
--- a/src/interaction/main/mainLinks.js
+++ b/src/interaction/main/mainLinks.js
@@ -37,7 +37,12 @@ App.UI.View.MainLinks = function() {
 				r += `You plan to make some easy (but dirty) money this week.`;
 				break;
 			case "HG":
-				r += `You plan to support your Head Girl this week, so ${he} can give more slaves ${his} attention.`;
+				r += `You plan to support your Head Girl this week, `;
+				if (V.HeadGirl) {
+					r += `so ${he} can give more slaves ${his} attention.`;
+				} else {
+					r += `should you assign one.`;
+				}
 				break;
 			case "sex":
 				r += `You plan to have as much sex with your slaves as possible this week.`;
-- 
GitLab