diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js index 88c7ab163c78a4472c8dbfd5f971518cefc4d168..0a1b83c17a76b481ac4f84ad1f5dc05288cb91c9 100644 --- a/js/003-data/policiesData.js +++ b/js/003-data/policiesData.js @@ -318,9 +318,9 @@ App.Data.Policies.Selection = { get text() { const el = new DocumentFragment(); if (V.idealAge === 18) { - el.append(`many consider the most sexually appealing age to be the old world default of 18. You will use your influence to change the sexual ideal to `); + el.append(`many consider the most sexually appealing age to be the old world default of ${num(18)}. You will use your influence to change the sexual ideal to `); } else { - el.append(`many consider the most sexually appealing age to be ${V.idealAge}. You will use your influence to change the sexual ideal to `); + el.append(`many consider the most sexually appealing age to be ${num(V.idealAge)}. You will use your influence to change the sexual ideal to `); } el.append( App.UI.DOM.makeElement( @@ -347,7 +347,7 @@ App.Data.Policies.Selection = { return el; }, get activatedText() { - return `you are using your personal influence to make ${V.targetIdealAge} the most sexually appealing age. The current perceived ideal age is ${V.idealAge}.`; + return `you are using your personal influence to make ${num(V.targetIdealAge)} the most sexually appealing age. The current perceived ideal age is ${V.idealAge}.`; }, onRepeal: function() { if (V.arcologies[0].FSMaturityPreferentialist !== "unset") {