From 5bd97ee568f5cc42f95a6a7f59032c630cf810b8 Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@mailbox.org>
Date: Wed, 14 Sep 2022 11:27:28 +0200
Subject: [PATCH] Fix slave not getting trust from living with HG and being in
 a relationship with them.

---
 src/endWeek/saLiveWithHG.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/endWeek/saLiveWithHG.js b/src/endWeek/saLiveWithHG.js
index df6a6a3c323..91b40711308 100644
--- a/src/endWeek/saLiveWithHG.js
+++ b/src/endWeek/saLiveWithHG.js
@@ -485,7 +485,7 @@ App.SlaveAssignment.liveWithHG = function saliveWithHG(slave) {
 							HG.devotion += 3;
 							slave.devotion += 3;
 							HG.trust += 2;
-							HG.devotion += 2;
+							slave.trust += 2;
 						}
 					} else {
 						r.push(`Since ${HG.slaveName} and ${slave.slaveName} are`);
@@ -498,7 +498,7 @@ App.SlaveAssignment.liveWithHG = function saliveWithHG(slave) {
 						HG.devotion += 4;
 						slave.devotion += 4;
 						HG.trust += 3;
-						HG.devotion += 3;
+						slave.trust += 3;
 					}
 				}
 				HG.relationship = slave.relationship;
-- 
GitLab