diff --git a/src/facilities/cellblock/cellblockFramework.js b/src/facilities/cellblock/cellblockFramework.js
index 32ee002d2b0729d2360a68f5a6c7be44bf8189e9..ab0af558c00824ee75a6a0c14b37ace4e11600c9 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.`);
 		}