From 16e42040531766af04f793c8d6bcdb2d9d14589f Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Sun, 5 Apr 2020 01:29:07 -0700
Subject: [PATCH] Fix player half-brothers

---
 src/descriptions/familySummaries.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/descriptions/familySummaries.js b/src/descriptions/familySummaries.js
index 01ba8e4f569..7307cc0f375 100644
--- a/src/descriptions/familySummaries.js
+++ b/src/descriptions/familySummaries.js
@@ -584,7 +584,7 @@ App.Desc.family = (function() {
 		}
 
 		if (halfBrothers.length > 1) {
-			r.push(`<br><span class="lightgreen">${slaveListToText(sisters)}</span> are your half-brothers.`);
+			r.push(`<br><span class="lightgreen">${slaveListToText(halfBrothers)}</span> are your half-brothers.`);
 		} else if (halfBrothers.length > 0) {
 			const {sister} = getPronouns(halfBrothers[0]);
 			r.push(`<br>You have one half-${sister}, <span class="lightgreen">${halfBrothers[0].slaveName}.</span>`);
-- 
GitLab