From dcbb5b41e671c7ab2477d75ae235d432667b1798 Mon Sep 17 00:00:00 2001 From: _no0neman <no0nemane@protonmail.com> Date: Sat, 5 Feb 2022 16:50:48 -0500 Subject: [PATCH] fix typo --- js/003-data/policiesData.js | 2 +- src/endWeek/economics/arcmgmt.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js index f5da2884f8d..b2b82cd5f23 100644 --- a/js/003-data/policiesData.js +++ b/js/003-data/policiesData.js @@ -364,7 +364,7 @@ App.Data.Policies.Selection = { V.targetIdealAge = 18; } }, - get note() { return `Will cost >${cashFormat(1500)} weekly until the target age is reached; high reputation will accelerate adoption.`} + get note() { return `Will cost ${cashFormat(1500)} weekly until the target age is reached; high reputation will accelerate adoption.`} } ], "arcologies[0].FSEgyptianRevivalistIncestPolicy": [ diff --git a/src/endWeek/economics/arcmgmt.js b/src/endWeek/economics/arcmgmt.js index 402dc2e1c42..bee0102dc00 100644 --- a/src/endWeek/economics/arcmgmt.js +++ b/src/endWeek/economics/arcmgmt.js @@ -1060,7 +1060,7 @@ App.EndWeek.arcManagement = function() { const r = []; if(V.policies.idealAge) { if(V.targetIdealAge !== V.idealAge) { - r.push(`You spend <span class="yellow">>${cashFormat(1500)}</span> and use your personal influence to shift the percieved ideal age of sexual appeal.`); + r.push(`You spend <span class="yellow">${cashFormat(1500)}</span> and use your personal influence to shift the percieved ideal age of sexual appeal.`); V.idealAgeAdoption += V.rep / 100; if(V.idealAgeAdoption > 100) { const adoptionModifier = Math.floor(V.idealAgeAdoption / 100); -- GitLab