Skip to content
Snippets Groups Projects
Commit d0de15e4 authored by Anu's avatar Anu
Browse files

Convert nodes to frags to fix paragraph order

parent fce366ad
No related branches found
No related tags found
1 merge request!9719PregInventorInvite fixes
......@@ -116,7 +116,7 @@ App.Events.rePregInventorInvite = class rePregInventorInvite extends App.Events.
]);
function no() {
const frag = new DocumentFragment();
let frag = document.createDocumentFragment();
let r = [];
r.push(`You calmly explain to your baby-filled broodmother that ${he} is property and expected to fulfill ${his} duties, not to think. ${He} is not to pursue this matter further.`);
if (slave.trust < -95) {
......@@ -166,7 +166,7 @@ App.Events.rePregInventorInvite = class rePregInventorInvite extends App.Events.
r.push(`${He} is mute and limbless, so it is nearly impossible for ${him} to communicate ${his} feelings without a great deal of forward planning and help from your AI assistant. Despite this, you can tell ${he}'s disappointed.`);
}
}
App.Events.addParagraph(node, r);
App.Events.addParagraph(frag, r);
r = [];
if (hasAnyCyberneticEyes(slave)) {
r.push(`${His} pretty ${App.Desc.eyesColor(slave, "bionic")} flash a shade cooler than normal and you can tell ${he}'s struggling to accept your decision.`);
......@@ -183,7 +183,7 @@ App.Events.rePregInventorInvite = class rePregInventorInvite extends App.Events.
}
function yes() {
const frag = new DocumentFragment();
let frag = document.createDocumentFragment();
let r = [];
r.push(`Being so close to the near-bursting womb of your slave for so long has got your loins stirring, and you hop up onto your desk, bringing your`);
if (V.PC.dick !== 0) {
......@@ -261,7 +261,7 @@ App.Events.rePregInventorInvite = class rePregInventorInvite extends App.Events.
}
}
}
App.Events.addParagraph(node, r);
App.Events.addParagraph(frag, r);
r = [];
r.push(`You congratulate yourself on having made the right decision as ${slave.slaveName} <span class="devotion inc">grows ever closer to you,</span> and ever larger in ${his} middle, over the course of the next week.`);
slave.devotion += 5;
......@@ -271,7 +271,7 @@ App.Events.rePregInventorInvite = class rePregInventorInvite extends App.Events.
}
function fund() {
const frag = new DocumentFragment();
let frag = document.createDocumentFragment();
let r = [];
r.push(`You are intrigued by ${his} offer.`);
if (hasAnyArms(slave)) {
......@@ -318,7 +318,7 @@ App.Events.rePregInventorInvite = class rePregInventorInvite extends App.Events.
} else {
r.push(`your fingers.`);
}
App.Events.addParagraph(node, r);
App.Events.addParagraph(frag, r);
r = [];
if (canTalk(slave)) {
r.push(`"Ooh, ${Master}," your slave ${say}s, "if you keep this up you'll wake the babies."`);
......@@ -329,7 +329,7 @@ App.Events.rePregInventorInvite = class rePregInventorInvite extends App.Events.
r.push(`The skin of your slave's monumental belly flushes red and ${he} wiggles ${his} stumps in combined embarrassment and arousal.`);
}
}
App.Events.addParagraph(node, r);
App.Events.addParagraph(frag, r);
r = [];
r.push(`Despite ${his} complaints, ${he} doesn't seem to mind once you start really fucking ${him} senseless.`);
r.push(VCheck.Vaginal(slave, 1));
......
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