diff --git a/src/js/generateMarketSlave.js b/src/js/generateMarketSlave.js index 2ff16a01aeff0eba360961c1fa4777da730fce6e..60f767b76ab1513489a2b2001b3146d92eac0da8 100644 --- a/src/js/generateMarketSlave.js +++ b/src/js/generateMarketSlave.js @@ -427,7 +427,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } else if (V.corpSpecImplants === 2) { r += `Slaves are given absurd breast, butt, and lip implants. `; V.activeSlave.buttImplant = 4; - V.activeSlave.butt = Math.clamp(V.activeSlave.butt+V.activeSlave.buttImplant, 0, 10, V.activeSlave.butt+V.activeSlave.buttImplant); + V.activeSlave.butt = Math.clamp(V.activeSlave.butt+V.activeSlave.buttImplant, 0, 10); V.activeSlave.boobsImplant = 2400; V.activeSlave.boobs = Math.clamp(V.activeSlave.boobs+V.activeSlave.boobsImplant, 0, 10000); V.activeSlave.lipsImplant = 60; @@ -499,7 +499,7 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.arcologies[market].FSRepopulationFocus > 50) { r += `They are exclusively female and all extremely pregnant. `; V.activeSlave.ovaries = 1; - V.activeSlave.vagina = jsRandom(0, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3); + V.activeSlave.vagina = either(0, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3); V.activeSlave.dick = 0; V.activeSlave.balls = 0; V.activeSlave.scrotum = 0; diff --git a/src/js/slaveStatsChecker.js b/src/js/slaveStatsChecker.js index 41571d9efd7b9f261273d5863bed0848fdd81e60..f7cbea30b57ce64ec066a0b44f73ef619c8cf1b7 100644 --- a/src/js/slaveStatsChecker.js +++ b/src/js/slaveStatsChecker.js @@ -258,14 +258,15 @@ window.heightPass = function(slave) { let measuresUp = false; // to make the other js that calls this unfinished function not meltdown return measuresUp; -} +}; /** * Returns slave bimbo body degree (FSIntellectualDependencyLawBeauty). * @param {App.Entity.SlaveState} slave - * @returns {boolean} + * @returns {number} */ window.bimboScore = function(slave) { + const V = State.variables; let degree = 0; let mods = SlaveStatsChecker.modScore(slave); @@ -341,7 +342,7 @@ window.bimboScore = function(slave) { // degree can go far higher than the max to allow various FS combinations to take advantage. return Math.clamp(degree, 0, 6); -} +}; /** * Returns if slave is considered stacked (big T&A) or not. diff --git a/src/js/surgery.js b/src/js/surgery.js index 874fc407656d9e6e35015361fab1a1bc6d45a9f7..73bfac4cc2952e07132197fcd8e45de5c8d816df 100644 --- a/src/js/surgery.js +++ b/src/js/surgery.js @@ -553,7 +553,7 @@ window.surgeryAmp = function(slave, part) { window.beginFuckdoll = function(slave) { slave.fuckdoll = 1; slave.toyHole = "all her holes"; - if ((slave.pubicHStyle !== "bald") || (slave.pubicHStyle !== "hairless")) { + if ((slave.pubicHStyle !== "bald") && (slave.pubicHStyle !== "hairless")) { slave.pubicHStyle = "waxed"; } slave.livingRules = "spare";