diff --git a/src/player/desc/pLongBody.js b/src/player/desc/pLongBody.js index ee489ac6a2f3cc1d64543af431fb019f45f999e8..e30a5aa5736bd4ccfb90fee434abaedec0ba2d7a 100644 --- a/src/player/desc/pLongBody.js +++ b/src/player/desc/pLongBody.js @@ -66,7 +66,7 @@ App.Desc.Player.body = function(PC = V.PC) { r.push(`You're <span class="orange">${PC.actualAge}</span> and full of vigor, if still underage by society's standards.`, ageDifference); } if (V.playerAging) { - r.push(`Your birthday is ${PC.birthWeek === 51 ? `next week` : `in ${52 - PC.birthWeek} weeks`}.`); + r.push(`Your birthday is ${PC.birthWeek === 51 ? `next week` : `in ${num(52 - PC.birthWeek)} weeks`}.`); } return r.join(" "); }