From a195ea7d9ae5416d454945de70811f288e537690 Mon Sep 17 00:00:00 2001 From: Blank_Alt <12406-Blank_Alt@users.noreply.gitgud.io> Date: Sun, 8 Mar 2020 16:43:37 -0700 Subject: [PATCH] populationDisplayTweak --- src/js/economyJS.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/economyJS.js b/src/js/economyJS.js index 33dd17c3856..e0034882439 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -2186,12 +2186,12 @@ window.supplyPoliciesReport = function(NPCclass) { if (V.sexSubsidies[varName] > 0) { const severity = ["none", "minor", "moderate", "substantial", "gratuitous"]; const subsidyCost = forceNeg(Math.trunc(V.NPCSexSupply[varName] * Math.pow(V.sexSubsidies[varName], 2) * 0.25)); - r += `Your ${severity[V.sexSubsidies[varName]]} subsidies of ${NPCclass} class sex supply cost you ${cashFormatColor(subsidyCost)} this week. `; + r += `<i><br> Your ${severity[V.sexSubsidies[varName]]} subsidies of ${NPCclass} class sex supply cost you ${cashFormatColor(subsidyCost)} this week.</i>`; cashX(subsidyCost, "policies"); // warn about conflicting policies if (V.sexSupplyBarriers[varName] > 0) { - r += `The supply barriers you are imposing on ${NPCclass} class sex supply <span class="red">reduce the effectiveness</span> of your subsidies and <span class="red">increase your costs.</span>`; + r += `<i><br> The supply barriers you are imposing on ${NPCclass} class sex supply <span class="red">reduce the effectiveness</span> of your subsidies and <span class="red">increase your costs.</span> </i>`; } r += `<br>`; } -- GitLab