diff --git a/src/facilities/cellblock/cellblockFramework.js b/src/facilities/cellblock/cellblockFramework.js index ab0af558c00824ee75a6a0c14b37ace4e11600c9..87cf26ffdaa5627cbd9c2116faf4da221f672405 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 terrified for the cellblock to have an effect ${this.facility.name}.`); + r.push(`${slave.slaveName} is too terrified for ${this.facility.name} to have an effect.`); } 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.`); }