From d1b0ac98d6b78e177907b2a57bbb435b8e9c1ac1 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sat, 22 May 2021 23:42:04 -0700 Subject: [PATCH] Fix height display --- 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 b11f0298bfd..f6a618756a5 100644 --- a/src/events/intro/pcAppearance.js +++ b/src/events/intro/pcAppearance.js @@ -654,7 +654,7 @@ App.UI.Player.design = function() { } else { r = []; - r.push(`You are a ${heightToEitherUnit(V.PC)} tall ${V.PC.nationality} ${V.PC.race} with`); + r.push(`You are a ${heightToEitherUnit(V.PC.height)} tall ${V.PC.nationality} ${V.PC.race} with`); if (V.PC.markings === "heavily freckled") { r.push(`heavily freckled`); } else if (V.PC.markings === "freckles") { -- GitLab