From 7b5d24af190de817c2b3d7abcd97d0c4c44d290b Mon Sep 17 00:00:00 2001
From: lowercase-donkey <lowercasedonkey@gmail.com>
Date: Mon, 10 Jun 2019 00:16:06 -0400
Subject: [PATCH] preg tweak

---
 src/facilities/cellblock/cellblockFramework.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/facilities/cellblock/cellblockFramework.js b/src/facilities/cellblock/cellblockFramework.js
index 32ee002d2b0..ab0af558c00 100644
--- a/src/facilities/cellblock/cellblockFramework.js
+++ b/src/facilities/cellblock/cellblockFramework.js
@@ -37,7 +37,7 @@ App.Entity.Facilities.CellblockJob = class extends App.Entity.Facilities.Facilit
 		let r = super.canEmploy(slave);
 
 		if (slave.trust < -50) {
-			r.push(`${slave.slaveName} is too close to mindbreak to be assigned to ${this.facility.name}.`);
+			r.push(`${slave.slaveName} is too terrified for the cellblock to have an effect ${this.facility.name}.`);
 		} else if ((slave.devotion > -20 || slave.trust < -20) && (slave.devotion >= -50 || slave.trust < -50)) {
 			r.push(`${slave.slaveName} is not defiant enough for ${this.facility.name} to have an effect.`);
 		}
-- 
GitLab