Skip to content
Snippets Groups Projects
Commit af567c9a authored by Skriv's avatar Skriv
Browse files

doublequotes + spacing

parent bd97f3fb
No related branches found
No related tags found
1 merge request!4102Minor cleaning
...@@ -153,7 +153,7 @@ window.isPure = /** @param {App.Entity.SlaveState} slave */ function(slave) { ...@@ -153,7 +153,7 @@ window.isPure = /** @param {App.Entity.SlaveState} slave */ function(slave) {
window.isFullyPotent = /** @param {App.Entity.SlaveState} slave */ function(slave) { window.isFullyPotent = /** @param {App.Entity.SlaveState} slave */ function(slave) {
if (!slave) { if (!slave) {
return null; return null;
} else if (slave.dick > 0 && slave.balls > 0 && slave.ballType !== 'sterile' && slave.hormoneBalance < 100 && slave.drugs !== 'hormone blockers') { } else if (slave.dick > 0 && slave.balls > 0 && slave.ballType !== "sterile" && slave.hormoneBalance < 100 && slave.drugs !== "hormone blockers") {
return true; return true;
} }
return false; return false;
...@@ -210,7 +210,7 @@ window.isFertile = function(slave) { ...@@ -210,7 +210,7 @@ window.isFertile = function(slave) {
window.canAchieveErection = /** @param {App.Entity.SlaveState} slave */ function(slave) { window.canAchieveErection = /** @param {App.Entity.SlaveState} slave */ function(slave) {
if (!slave) { if (!slave) {
return null; return null;
} else if (slave.dick < 7 && slave.dick > 0 && slave.drugs !== 'hormone blockers' && (slave.balls > 0 ? slave.hormoneBalance < 100 : slave.hormoneBalance <= -100) && slave.ballType !== 'sterile') { } else if (slave.dick < 7 && slave.dick > 0 && slave.drugs !== "hormone blockers" && (slave.balls > 0 ? slave.hormoneBalance < 100 : slave.hormoneBalance <= -100) && slave.ballType !== "sterile") {
return true; return true;
} }
return false; return false;
...@@ -419,6 +419,6 @@ window.tooBigButt = /** @param {App.Entity.SlaveState} slave */ function(slave) ...@@ -419,6 +419,6 @@ window.tooBigButt = /** @param {App.Entity.SlaveState} slave */ function(slave)
window.isVegetable = /** @param {App.Entity.SlaveState} slave */ function(slave) { window.isVegetable = /** @param {App.Entity.SlaveState} slave */ function(slave) {
slave = slave || State.variables.activeSlave; slave = slave || State.variables.activeSlave;
if(!slave) { return false; } if (!slave) { return false; }
return (slave.fetish === 'mindbroken'); return (slave.fetish === "mindbroken");
}; };
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