From 6fcf62af133c5c5e2ea81d6e9fb6c63a2e22e6b4 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Fri, 19 Feb 2021 06:06:13 -0500
Subject: [PATCH] more tweaks

---
 src/events/PE/UnderageConcubine.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/events/PE/UnderageConcubine.js b/src/events/PE/UnderageConcubine.js
index 87b8cbe752c..3278410fa0a 100644
--- a/src/events/PE/UnderageConcubine.js
+++ b/src/events/PE/UnderageConcubine.js
@@ -12,12 +12,14 @@ App.Events.PEUnderageConcubine = class PEUnderageConcubine extends App.Events.Ba
 	actorPrerequisites() {
 		return [ [ // one actor, must be able-bodied, devoted, hearing/speaking, underaged concubine; eyes not necessary
 			(s) => s.ID === V.ConcubineID,
+			(s) => s.fetish !== "mindbroken",
 			(s) => s.actualAge < 18, // it's in the name of the event
 			(s) => s.visualAge < 18, // so they must also look it
 			(s) => s.actualAge > 6, // event text assumes fluent speech, inductive reasoning, etc
 			(s) => s.devotion > 50, // you took her to an external event with you, so you must be able to count on her obedience
 			canTalk,
 			(s) => hasAnyArms(s),
+			canMove,
 			canHear
 		] ];
 	}
-- 
GitLab