From 3ee0811ca1087b50c2b8d15bf88b97a671ee8223 Mon Sep 17 00:00:00 2001
From: Trinidad <anchaiscastilla@gmail.com>
Date: Thu, 20 Jul 2023 22:10:38 +0200
Subject: [PATCH] 	modified:   src/player/electiveSurgery.js 
 modified:   src/player/js/PlayerState.js

---
 src/player/electiveSurgery.js | 4 ++--
 src/player/js/PlayerState.js  | 2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/player/electiveSurgery.js b/src/player/electiveSurgery.js
index cf51542fdf4..a2d26cedbd2 100644
--- a/src/player/electiveSurgery.js
+++ b/src/player/electiveSurgery.js
@@ -733,7 +733,7 @@ App.UI.electiveSurgery = function() {
 				r.push(`"It looks like you have lost the warranty seal${V.PC.counter.reHymen ? " again" : ""}. I can give you a hymen reconstruction for only <span class="cash">${cashFormat(applyDiscount(2000))}</span>. No one will notice that your vagina has ${V.PC.counter.vaginal/V.week > 10 ? "largely" : ""} been used${V.raped > 0 ? " and abused" : ""}, it will be a perfect work of craftsmanship. The surgery will also serve to make your duct narrow like"`);
 				if (V.PC.physicalAge < 13 || V.PC.actualAge < 13) {
 					r.push("a child like you is supposed to have.");
-				} else if (V.PC.visualAge) {
+				} else if (V.PC.visualAge < 13) {
 					r.push("the child you look like is supposed to have.");
 				} else if (!V.PC.pubertyXX) {
 					r.push(`a prepubescent ${V.PC.genes === "XX" ? "girl" : "boy with vagina"} like you is supposed to have.`);
@@ -759,7 +759,7 @@ App.UI.electiveSurgery = function() {
 				r.push(`"It looks like you have lost the warranty seal${V.PC.counter.reHymen ? " again" : ""}. If you weren't pregnant, I could give you a hymen reconstruction for only <span class="cash">${cashFormat(applyDiscount(2000))}</span>. No one would notice that your vagina has ${V.PC.counter.vaginal/V.week > 10 ? "largely" : ""} been used${V.raped > 0 ? " and abused" : ""}, it would be a perfect work of craftsmanship. The surgery would also serve to make your duct narrow like"`);
 				if (V.PC.physicalAge < 13 || V.PC.actualAge < 13) {
 					r.push("a child like you is supposed to have.");
-				} else if (V.PC.visualAge) {
+				} else if (V.PC.visualAge < 13) {
 					r.push("the child you look like is supposed to have.");
 				} else if (!V.PC.pubertyXX) {
 					r.push(`a prepubescent ${V.PC.genes === "XX" ? "girl" : "boy with vagina"} like you is supposed to have.`);
diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js
index 20146eefcf9..9cdbea31101 100644
--- a/src/player/js/PlayerState.js
+++ b/src/player/js/PlayerState.js
@@ -110,8 +110,6 @@ App.Entity.PlayerActionsCountersState = class {
 		this.birthOther = 0;
 		/** how many units of your cum are stored away for artificially inseminating slaves */
 		this.storedCum = 0;
-		/** how many times you've been raped or forced to intercourse*/
-		this.raped = 0;
 		/** shared variables */
 		/** amount of milk given */
 		this.milk = 0;
-- 
GitLab