diff --git a/CHANGELOG.md b/CHANGELOG.md
index 25056e680847e475a4ab7b02985fb14b00886f44..297aa3daaaeb8012192a74750547a63e4ada0f20 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
 * Reminders system improvements
 * Elohiem's webgl art update 2 & 3
 * added new hairstyles (bangs, hime, drills)
+* added slave distribution presets (PLC, Japan/Korea, Carribean)
 * heavy reconstruction of the event systems
 * REFI conversion complete
 * fixes
diff --git a/src/events/PE/concubineInterview.js b/src/events/PE/concubineInterview.js
index c177077e95c218a58d7005c5badae8d07569f123..7676299c764d35e00de154b85a529415b02075ee 100644
--- a/src/events/PE/concubineInterview.js
+++ b/src/events/PE/concubineInterview.js
@@ -105,7 +105,7 @@ App.Events.PEConcubineInterview = class PEConcubineInterview extends App.Events.
 				} else if (eventSlave.intelligence + eventSlave.intelligenceImplant > 15) {
 					t.push(`${He} manages to sway the topic away from ${his} apparent underageness. ${speak(`"I'm really ${eventSlave.actualAge}, believe it or not. Wouldn't you like to know my secret?"`)}`);
 				} else {
-					t.push(`${He} manages to completely miss the insinuation and <span class="red">make things worse than they really are.</span> ${speak(`"Master loves the way I look, that's why I'm hisP favorite after all, but I'm still ${eventSlave.actualAge}-years old."`)}`);
+					t.push(`${He} manages to completely miss the insinuation and <span class="red">make things worse than they really are.</span> ${speak(`"Master loves the way I look, that's why I'm ${hisP} favorite after all, but I'm still ${eventSlave.actualAge}-years old."`)}`);
 
 					rep(-100);
 				}
diff --git a/src/events/nonRandomEvent.js b/src/events/nonRandomEvent.js
index 7a668892caad5cf9b5c62494ec50cd22e463b257..7f4d2661dc738f2dc49ab40d0de42b7449c8363d 100644
--- a/src/events/nonRandomEvent.js
+++ b/src/events/nonRandomEvent.js
@@ -103,6 +103,7 @@ App.Events.getNonrandomEvents = function() {
 		new App.Events.MurderAttempt(),
 		new App.Events.MurderAttemptFollowup(),
 		new App.Events.pRaped(),
+		new App.Events.pAbducted(),
 	];
 };