diff --git a/src/events/RESS/ageDifferenceOldPC.js b/src/events/RESS/ageDifferenceOldPC.js
index d21e147173b608bc32190b2732a27506e1df4641..871c8c63676216eae4175f800a9fd2857185d8ce 100644
--- a/src/events/RESS/ageDifferenceOldPC.js
+++ b/src/events/RESS/ageDifferenceOldPC.js
@@ -36,7 +36,13 @@ App.Events.RESSAgeDifferenceOldPC = class RESSAgeDifferenceOldPC extends App.Eve
 		let r = [];
 		r.push(`As another long week draws to a close,`);
 		r.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), ","));
-		r.push(`happens to walk past your office toward bed. There's nothing inherently abnormal about ${his} actions, but you do notice as ${he} steps past the doorway that an expression of worry and concern adorns ${his} ${eventSlave.skin} face. When you call ${him} into your office, ${his} face visibly brightens up in an attempt to conceal ${his} obvious distress as ${he} comes before you. Notably, although ${he} stands still and patiently awaits further orders, you notice ${he}`);
+		r.push(`happens to`);
+		if (eventSlave.belly >= 10000) {
+			r.push("waddle");
+		} else {
+			r.push("walk");
+		}
+		r.push(`past your office toward bed. There's nothing inherently abnormal about ${his} actions, but you do notice as ${he} steps past the doorway that an expression of worry and concern adorns ${his} ${eventSlave.skin} face. When you call ${him} into your office, ${his} face visibly brightens up in an attempt to conceal ${his} obvious distress as ${he} comes before you. Notably, although ${he} stands still and patiently awaits further orders, you notice ${he}`);
 		if (canSee(eventSlave)) {
 			r.push(`never manages to meet your eyes.`);
 		} else {
@@ -154,7 +160,7 @@ App.Events.RESSAgeDifferenceOldPC = class RESSAgeDifferenceOldPC extends App.Eve
 			r.push(`Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into ${his} ear, nip at ${his} neck,`);
 			if (eventSlave.bellyPreg >= 300000) {
 				r.push(`run your hands across ${his} squirming brood,`);
-			} else if (eventSlave.preg > eventSlave.pregData.normalBirth/2) {
+			} else if (eventSlave.preg > eventSlave.pregData.normalBirth / 2) {
 				r.push(`stroke ${his} pregnant belly,`);
 			} else if (eventSlave.belly >= 5000) {
 				r.push(`caress the curve of ${his} ${belly} belly,`);
diff --git a/src/events/RESS/ageDifferenceYoungPC.js b/src/events/RESS/ageDifferenceYoungPC.js
index d5711d08f8319fdcf4f60840f837e8ce5ffcc63d..6c8656ab423dfdcae73445a263c5a8d1958e3072 100644
--- a/src/events/RESS/ageDifferenceYoungPC.js
+++ b/src/events/RESS/ageDifferenceYoungPC.js
@@ -122,7 +122,7 @@ App.Events.RESSAgeDifferenceYoungPC = class RESSAgeDifferenceYoungPC extends App
 					r.push(`tremendously swollen`);
 				}
 				r.push(`older ${woman} onto the sheets before gently mounting ${him}.`);
-			} else {
+			} else { // check canLift() here!
 				if (eventSlave.belly >= 5000) {
 					r.push(`carefully`);
 				}
@@ -131,7 +131,7 @@ App.Events.RESSAgeDifferenceYoungPC = class RESSAgeDifferenceYoungPC extends App
 			r.push(`Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into ${his} ear, nip at ${his} neck,`);
 			if (eventSlave.bellyPreg >= 300000) {
 				r.push(`run your hands across ${his} squirming brood,`);
-			} else if (eventSlave.preg > eventSlave.pregData.normalBirth/2) {
+			} else if (eventSlave.preg > eventSlave.pregData.normalBirth / 2) {
 				r.push(`stroke ${his} pregnant belly,`);
 			} else if (eventSlave.belly >= 5000) {
 				r.push(`caress the curve of ${his} ${belly} belly,`);