Skip to content
Snippets Groups Projects
Commit e4fec1e3 authored by ezsh's avatar ezsh
Browse files

Restore test for brokem mind in schoolroom

I did not copy it to the schoolrom in 99824992
parent f5be6b00
No related branches found
No related tags found
No related merge requests found
...@@ -98,7 +98,7 @@ App.Entity.Facilities.PenthouseJobs = { ...@@ -98,7 +98,7 @@ App.Entity.Facilities.PenthouseJobs = {
} }
if (slave.fetish === "mindbroken") { if (slave.fetish === "mindbroken") {
r.push(`${capFirstChar(slave.possessive)} mind is fundamentally broken and can't learn.`); r.push(`${slave.slaveName}'s mind is fundamentally broken and can't learn.`);
} }
return r; return r;
} }
......
...@@ -46,6 +46,10 @@ App.Entity.Facilities.SchoolroomStudentJob = class extends App.Entity.Facilities ...@@ -46,6 +46,10 @@ App.Entity.Facilities.SchoolroomStudentJob = class extends App.Entity.Facilities
r.push(`${slave.slaveName} has nothing left to learn.`); r.push(`${slave.slaveName} has nothing left to learn.`);
} }
if (slave.fetish === "mindbroken") {
r.push(`${slave.slaveName}'s mind is fundamentally broken and can't learn`);
}
return r; return r;
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment