From 462ab70fcd9b2f175fb1cd16427b917cd15375df Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Fri, 26 Aug 2022 02:49:34 -0400
Subject: [PATCH] finalities

---
 CHANGELOG.md                     | 5 +++++
 src/002-config/fc-version.js     | 2 +-
 src/player/doctorConsultation.js | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index de6a00c8253..d0603fa3b05 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,8 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
 
 ## Unreleased
 
+## 0.10.7.1-4.0.0-alpha.18 - 2022-08-26
+
 * added player drugs
+* added player health
+* added Doctor Consultation for all your health and drug needs
 * added player salon
+* genePool player object record
 * Chattel religionist "Holy Nudism" policy
 * chooses own clothing now slightly less restrictive wth Chattel religionist
 * RA simple mode
diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js
index a7d824c32f0..1de0ba85f1d 100644
--- a/src/002-config/fc-version.js
+++ b/src/002-config/fc-version.js
@@ -1,6 +1,6 @@
 App.Version = {
 	base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed.
-	pmod: "4.0.0-alpha.17",
+	pmod: "4.0.0-alpha.18",
 	commitHash: null,
 	release: 1178, // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js.
 };
diff --git a/src/player/doctorConsultation.js b/src/player/doctorConsultation.js
index 3ac11085dff..9399af69f05 100644
--- a/src/player/doctorConsultation.js
+++ b/src/player/doctorConsultation.js
@@ -25,7 +25,7 @@ App.UI.doctorConsultation = function() {
 		]);
 	} else if (V.doctor.state > 0) {
 		App.Events.addParagraph(frag, [
-			`You head to the private clinic to meet with your doctor for a medical examination. After a short wait, and a payment of <span class="cash">${cashFormat(price)},</span>, you're directed to your doctor's exam room for your appointment. "${V.PC.health.condition < 20 || V.PC.health.illness > 1 || V.PC.addict > 10 ? "Well you've seen better days, haven't you? Came to the right place to put back in order, though." : "You seem to be doing well, but let's see what the tests have to say about that"}. Hop up on the scale and we'll get this over with."`
+			`You head to the private clinic to meet with your doctor for a medical examination. After a short wait, and a payment of <span class="cash">${cashFormat(price)},</span> you're directed to your doctor's exam room for your appointment. "${V.PC.health.condition < 20 || V.PC.health.illness > 1 || V.PC.addict > 10 ? "Well you've seen better days, haven't you? Came to the right place to put back in order, though." : "You seem to be doing well, but let's see what the tests have to say about that"}. Hop up on the scale and we'll get this over with."`
 		]);
 		V.doctor.state = 2;
 	} else {
-- 
GitLab