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

Merge branch 'hotfixes' into 'pregmod-master'

Minor cleanup

See merge request pregmodfan/fc-pregmod!4581
parents 9f2e0ee7 6a1aca1e
No related branches found
No related tags found
1 merge request!4581Minor cleanup
/**
* @param {App.Entity.SlaveState} slave
* @returns {string}
*/
window.saNanny = function saNanny(slave) {
"use strict";
const V = State.variables;
/* eslint-disable */
const pronouns = getPronouns(slave);
const he = pronouns.pronoun;
const him = pronouns.object;
const his = pronouns.possessive;
const hers = pronouns.possessivePronoun;
const himself = pronouns.objectReflexive;
const boy = pronouns.noun;
const He = capFirstChar(he);
const His = capFirstChar(his);
/* eslint-enable */
let t = `works as a nanny this week. `;
if (V.Matron) {
t += `effects here`;
}
return t;
};
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