From b1a263a6388bde45ed03df2d8031e86a0acdb347 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sun, 2 Feb 2020 20:12:12 -0800 Subject: [PATCH] Oral count is supposed to be scaled to half for some reason (probably just because it's way too common). --- src/js/descriptionWidgets.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js index df095d1b7f6..536ec4a5327 100644 --- a/src/js/descriptionWidgets.js +++ b/src/js/descriptionWidgets.js @@ -1553,7 +1553,8 @@ App.Desc.sexualHistory = function(slave) { penetrative: `${he}'s pounded a hole`, oral: `${he}'s sucked something off` }; - const biggestSexType = sexTypes.reduce((res, el) => (slave.counter[el] > slave.counter[res]) ? el : res); + const getSexTypeScaled = (t) => slave.counter[t] * ((t === "oral") ? 0.5 : 1.0); + const biggestSexType = sexTypes.reduce((res, el) => (getSexTypeScaled(el) > getSexTypeScaled(res)) ? el : res); const frequency = (weeksOwned*112) / slave.counter[biggestSexType]; if (frequency < 4.5) { r += `Remarkably, this means ${sexDescriptions[biggestSexType]} `; -- GitLab