From 831e80478b079de124d647e47df9139357903529 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sat, 22 May 2021 23:41:29 -0700 Subject: [PATCH] Fix PC height randomization limits --- src/events/intro/pcAppearance.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/intro/pcAppearance.js b/src/events/intro/pcAppearance.js index 40c3d32f0bc..b11f0298bfd 100644 --- a/src/events/intro/pcAppearance.js +++ b/src/events/intro/pcAppearance.js @@ -274,7 +274,7 @@ App.UI.Player.syncAgeBasedParameters = function() { V.PC.physicalAge = V.PC.actualAge; V.PC.visualAge = V.PC.actualAge; V.PC.ovaryAge = V.PC.actualAge; - V.PC.height = Math.round(Height.random(V.PC), {limitMult: [2, 4]}); + V.PC.height = Math.round(Height.random(V.PC, {limitMult: [2, 4]})); if (V.PC.genes === "XY") { if (V.PC.physicalAge <= 13) { V.PC.hips = -2; -- GitLab