Skip to content
Snippets Groups Projects
Commit 3f8d2b7a authored by brickode's avatar brickode
Browse files

Nursery changes

parent a55a79dc
No related branches found
No related tags found
1 merge request!2620Nursery
...@@ -268,14 +268,6 @@ window.canImpreg = function(slave1, slave2) { ...@@ -268,14 +268,6 @@ window.canImpreg = function(slave1, slave2) {
return null; return null;
} else if (slave2.dick < 1) { } else if (slave2.dick < 1) {
return false; return false;
} else if (slave2.ID === -1) {
if (slave1.eggType != "human") {
return false;
} else if (!canGetPregnant(slave1)) { /* includes chastity checks */
return false;
} else {
return true;
}
} else if (slave2.balls < 1) { } else if (slave2.balls < 1) {
return false; return false;
} else if (slave2.dickAccessory == "chastity") { } else if (slave2.dickAccessory == "chastity") {
...@@ -286,14 +278,6 @@ window.canImpreg = function(slave1, slave2) { ...@@ -286,14 +278,6 @@ window.canImpreg = function(slave1, slave2) {
return false; return false;
} else if (slave2.vasectomy == 1) { } else if (slave2.vasectomy == 1) {
return false; return false;
} else if (slave1.ID === -1) {
if (slave2.ballType != "human") {
return false;
} else if (!isPlayerFertile(slave1)) {
return false;
} else {
return true;
}
} else if (!canBreed(slave1, slave2)) { } else if (!canBreed(slave1, slave2)) {
return false; /* pregmod end */ return false; /* pregmod end */
} else if (!canGetPregnant(slave1)) { /* includes chastity checks */ } else if (!canGetPregnant(slave1)) { /* includes chastity checks */
...@@ -321,7 +305,7 @@ window.isFertile = function(slave) { ...@@ -321,7 +305,7 @@ window.isFertile = function(slave) {
return false; return false;
} else if (slave.ovaryAge >= 47) { } else if (slave.ovaryAge >= 47) {
return false; return false;
} else if (slave.inflation > 2) { } else if (slave.inflation != 0) {
return false; return false;
} else if (slave.bellyImplant != -1) { } else if (slave.bellyImplant != -1) {
return false; return false;
...@@ -744,6 +728,7 @@ window.expandFacilityAssignments = function(facilityAssignments) { ...@@ -744,6 +728,7 @@ window.expandFacilityAssignments = function(facilityAssignments) {
"serve in the master suite": "be your Concubine", "serve in the master suite": "be your Concubine",
"learn in the schoolroom": "be the Schoolteacher", "learn in the schoolroom": "be the Schoolteacher",
"be confined in the cellblock": "be the Wardeness", "be confined in the cellblock": "be the Wardeness",
"be a nanny": "be the Matron",
}; };
if (!facilityAssignments || !facilityAssignments.length) if (!facilityAssignments || !facilityAssignments.length)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment