From 514de2241a7b145ebdd9514d94c6bcf90de81f4c Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@mailbox.org>
Date: Sun, 16 Oct 2022 16:57:58 +0200
Subject: [PATCH] Fix changing devotion instead of trust when installing ocular
 implants

---
 js/medicine/surgery/eye/ocularImplant.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/medicine/surgery/eye/ocularImplant.js b/js/medicine/surgery/eye/ocularImplant.js
index 17b942494fe..0f26faaacc2 100644
--- a/js/medicine/surgery/eye/ocularImplant.js
+++ b/js/medicine/surgery/eye/ocularImplant.js
@@ -16,7 +16,7 @@ App.Medicine.Surgery.Reactions.OcularImplant = class extends App.Medicine.Surger
 				reaction.trust += 10;
 			} else {
 				r.push(`${He} is <span class="trust dec">disturbed</span> that you replaced ${his} eyes with artificial ones and afraid of increased control over ${him} that such device grants.`);
-				reaction.devotion -= 5; // TODO: text says trust, but devotion changed?
+				reaction.trust -= 5;
 			}
 		}
 
-- 
GitLab