Skip to content
Snippets Groups Projects
Commit a693be36 authored by svornost's avatar svornost
Browse files

Fix repeated text, stray spaces in links.

parent fcfe6596
No related branches found
No related tags found
1 merge request!11460HGSelect fixes
......@@ -147,6 +147,7 @@ App.Facilities.HGSelect = function() {
}
App.Events.addNode(f, r, "div", "indent");
r = [];
if (V.seePreg !== 0) {
if (V.universalRulesImpregnation === "HG") {
App.UI.DOM.appendNewElement("div", f, `${HGName} is responsible for impregnating fertile slaves.`);
......@@ -183,19 +184,19 @@ App.Facilities.HGSelect = function() {
} else {
App.UI.DOM.appendNewElement("div", f, `However, ${S.HeadGirl.slaveName} cannot perform this duty.`);
}
r.push(App.UI.DOM.link(` Rescind ${his} impregnation responsibility`, () => {
r.push(App.UI.DOM.link(`Rescind ${his} impregnation responsibility`, () => {
V.universalRulesImpregnation = "none";
App.UI.reload();
}));
r.push(App.UI.DOM.link(` See to it yourself`, () => {
r.push(App.UI.DOM.link(`See to it yourself`, () => {
V.universalRulesImpregnation = "PC";
App.UI.reload();
}));
f.append(App.UI.DOM.generateLinksStrip(r));
f.append(' ', App.UI.DOM.generateLinksStrip(r));
} else {
if (canPenetrate(S.HeadGirl) && S.HeadGirl.pubertyXY === 1) {
App.UI.DOM.appendNewElement("div", f, `${HGName} is capable of impregnating slaves, but it's not part of ${his} responsibilities.`).append(
App.UI.DOM.link(` Assign ${him} to impregnate`, () => {
App.UI.DOM.appendNewElement("div", f, `${HGName} is capable of impregnating slaves, but it's not part of ${his} responsibilities. `).append(
App.UI.DOM.link(`Assign ${him} to impregnate`, () => {
V.universalRulesImpregnation = "HG";
App.UI.reload();
}));
......
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