diff --git a/src/facilities/pit/pitFramework.js b/src/facilities/pit/pitFramework.js
index a12fec5369e9f943ef387a3473d7e06a9d9264a4..ed2ca4086d586fd6e6cd7af89efccfe478c3f571 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;
 	}