From 9044907ba2cf4da53155751838ca0ea72e358c99 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Wed, 12 May 2021 16:16:03 -0400
Subject: [PATCH] fix body check

---
 js/003-data/slaveBody.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/js/003-data/slaveBody.js b/js/003-data/slaveBody.js
index 0eaa1bcecab..8f16e3a821d 100644
--- a/js/003-data/slaveBody.js
+++ b/js/003-data/slaveBody.js
@@ -42,11 +42,11 @@ App.Data.Slave.body = new Map([
 	}],
 	["penis", {
 		category: "torso",
-		requirements: (slave) => hasAnyNaturalArms(slave),
+		requirements: (slave) => slave.dick > 0,
 	}],
 	["testicle", {
 		category: "torso",
-		requirements: (slave) => hasAnyNaturalArms(slave),
+		requirements: (slave) => slave.scrotum > 0 && slave.balls > 0,
 		isPair: true
 	}],
 
-- 
GitLab