From 6a57f073c68e0b2c3ff37b38f2408fc2f85257b6 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Tue, 14 Sep 2021 14:43:22 -0700 Subject: [PATCH] Vasodilator gingering should not be applied to dickless slaves, since it will make dicks appear out of thin air (and then disappear once the gingering is undone). --- src/markets/gingering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markets/gingering.js b/src/markets/gingering.js index 4a7deacf27c..f51c6d913f9 100644 --- a/src/markets/gingering.js +++ b/src/markets/gingering.js @@ -34,7 +34,7 @@ App.Entity.GingeringParameters = class { this.type = "stimulant"; } else if (slave.balls > 0 && slave.dick > 2 && jsRandom(1, 3) === 1) { this.type = "vasoconstrictor"; - } else if (slave.balls > 0 && slave.dick < 5 && jsRandom(1, 3) === 1) { + } else if (slave.balls > 0 && slave.dick.isBetween(0, 5) && jsRandom(1, 3) === 1) { this.type = "vasodilator"; } else if (slave.attrKnown === 0 && jsRandom(1, 3) === 1) { this.type = "aphrodisiac"; -- GitLab