Skip to content
Snippets Groups Projects
Commit be0e6239 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'pregmod-dev' into 'pregmod-master'

fix saServant

Closes #1239

See merge request pregmodfan/fc-pregmod!5629
parents 70849cf0 260ffec8
No related branches found
No related tags found
No related merge requests found
...@@ -64,27 +64,27 @@ window.saServant = function saServant(slave) { ...@@ -64,27 +64,27 @@ window.saServant = function saServant(slave) {
} }
if (slave.health.illness > 0 || slave.health.tired > 50) { if (slave.health.illness > 0 || slave.health.tired > 50) {
r += ` ${He} performed worse this week due to`; t += ` ${He} performed worse this week due to`;
if (slave.health.illness === 1) { if (slave.health.illness === 1) {
r += ` feeling under the weather`; t += ` feeling under the weather`;
} else if (slave.health.illness === 2) { } else if (slave.health.illness === 2) {
r += ` a minor illness`; t += ` a minor illness`;
} else if (slave.health.illness === 3) { } else if (slave.health.illness === 3) {
r += ` being sick`; t += ` being sick`;
} else if (slave.health.illness === 4) { } else if (slave.health.illness === 4) {
r += ` being very sick`; t += ` being very sick`;
} else if (slave.health.illness === 5) { } else if (slave.health.illness === 5) {
r += ` a terrible illness`; t += ` a terrible illness`;
} }
if (slave.health.illness > 0 && slave.health.tired > 50) { if (slave.health.illness > 0 && slave.health.tired > 50) {
r += ` and`; t += ` and`;
} }
if (slave.health.tired < 80) { if (slave.health.tired < 80) {
r += ` being tired`; t += ` being tired`;
} else { } else {
r += ` exhaustion`; t += ` exhaustion`;
} }
r += `.`; t += `.`;
} }
// TODO: this flat unchecked oral sex is a bit problematic // TODO: this flat unchecked oral sex is a bit problematic
......
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