From c51ac77ff5f446680be0679729e2deb6ff301302 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 17 Sep 2020 00:48:11 -0400
Subject: [PATCH] fix

---
 js/birth.js | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/js/birth.js b/js/birth.js
index fd863a70e6f..de4070d9583 100644
--- a/js/birth.js
+++ b/js/birth.js
@@ -730,7 +730,7 @@ globalThis.birth = function(slave) {
 		}
 	}
 	V.humiliation = humiliation || V.humiliation;
-	el.append(App.Events.addParagraph(el, r));
+	App.Events.addParagraph(el, r);
 	return el;
 };
 
@@ -1172,7 +1172,7 @@ globalThis.ampBirth = function(slave) { // "AmpBirth"
 		}
 	}
 	V.humiliation = humiliation || V.humiliation;
-	el.append(App.Events.addParagraph(el, r));
+	App.Events.addParagraph(el, r);
 	return el;
 };
 
@@ -2058,7 +2058,7 @@ globalThis.suddenBirth = function(slave) { // "SuddenBirth"
 		}
 	}
 	V.humiliation = humiliation || V.humiliation;
-	el.append(App.Events.addParagraph(el, r));
+	App.Events.addParagraph(el, r);
 	return el;
 };
 
@@ -2138,7 +2138,7 @@ globalThis.deadlyBirth = function(slave, curBabies) { // "DeadlyBirth">>
 			}
 			r.push(`agape. An unfortunate loss.`);
 	}
-	el.append(App.Events.addParagraph(el, r));
+	App.Events.addParagraph(el, r);
 	if (V.arcologies[0].FSRestart !== "unset" && slave.breedingMark === 1 && V.propOutcome === 1 && (slave.pregSource === -1 || slave.pregSource === -6) && V.eugenicsFullControl !== 1) {
 		const div = document.createElement("div");
 		div.append(`The Societal Elite `);
@@ -4571,7 +4571,7 @@ globalThis.clothingBirth = function(slave) { // widget "ClothingBirth">>
 		}
 	}
 	V.humiliation = humiliation || V.humiliation;
-	el.append(App.Events.addParagraph(el, r));
+	App.Events.addParagraph(el, r);
 	return el;
 };
 
@@ -7815,7 +7815,7 @@ globalThis.broodmotherBirth = function(slave) {
 			}
 		}
 	}
-	el.append(App.Events.addParagraph(el, r));
+	App.Events.addParagraph(el, r);
 	return el;
 };
 
@@ -8667,6 +8667,6 @@ globalThis.hyperBroodmotherBirth = function(slave) {
 			}
 		}
 	}
-	el.append(App.Events.addParagraph(el, r));
+	App.Events.addParagraph(el, r);
 	return el;
 };
-- 
GitLab