From 588ab77e17a4a02e783b039b8fbf0e67cb647795 Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@mailbox.org>
Date: Thu, 15 Sep 2022 22:31:14 +0200
Subject: [PATCH] Fix pit entry check desync

---
 src/facilities/pit/pitFramework.js | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/facilities/pit/pitFramework.js b/src/facilities/pit/pitFramework.js
index a12fec5369e..ed2ca4086d5 100644
--- a/src/facilities/pit/pitFramework.js
+++ b/src/facilities/pit/pitFramework.js
@@ -32,6 +32,12 @@ App.Entity.Facilities.PitFighterJob = class extends App.Entity.Facilities.Facili
 		if ((slave.indentureRestrictions > 0) && (this.facility.option("lethal"))) {
 			r.push(`${slave.slaveName}'s indenture forbids lethal fights.`);
 		}
+		if (!canWalk(slave)) {
+			r.push(`${slave.slaveName} cannot walk independently.`);
+		}
+		if (!canHold(slave)) {
+			r.push(`${slave.slaveName} is unable to strike their opponent.`);
+		}
 		return r;
 	}
 
-- 
GitLab