From 912c396566beaea6dac9d38fbdb3daf444e7a683 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 26 Oct 2020 22:38:36 -0400 Subject: [PATCH] fixes --- src/endWeek/persBusiness.js | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/endWeek/persBusiness.js b/src/endWeek/persBusiness.js index b8d19902d74..247927e113f 100644 --- a/src/endWeek/persBusiness.js +++ b/src/endWeek/persBusiness.js @@ -448,8 +448,7 @@ App.EndWeek.personalBusiness = function() { r.push(`You somehow manage to hide your identity for all but the most cunning of people, so the only thing that really <span class="red">damages your reputation</span> is the fact that people associate you with gangs all the time.`); repX((V.rep * .98) - V.rep, "personalBusiness"); } - } else { - r.push(` /* low reputation */`); + } else { /* low reputation */ if (!_caught && random(1, 100) >= 90) { r.push(`You work efficiently, not spending any time talking to people more than you need. Your efficiency even managed to earn you <span class="green">quite a few good words</span> from some people who were leading double lives like you were, and they made sure to get a word in about you in their business conversations.`); repX((V.rep * 1.05) - V.rep, "personalBusiness"); @@ -464,9 +463,7 @@ App.EndWeek.personalBusiness = function() { } } _income += Math.trunc(Math.min(3000 * Math.log(V.cash + 1), V.cash * 0.07)); - r.push(`This week, your illicit and legitimate business dealings earned you a combined total of <span class="yellowgreen">`); - cashFormat(_income); - r.push(`.</span>`); + r.push(`This week, your illicit and legitimate business dealings earned you a combined total of <span class="yellowgreen">${cashFormat(_income)}.</span>`); cashX(_income, "personalBusiness"); } else if ((V.cash > 1000) && (V.personalAttention === "business")) { if (V.PC.belly >= 1500) { @@ -484,9 +481,7 @@ App.EndWeek.personalBusiness = function() { r.push(`You focus on business this week and make some money:`); _income += Math.trunc(Math.min(3500 * Math.log(V.cash), V.cash * 0.07)); } - r.push(`<span class="yellowgreen">`); - cashFormat(_income); - r.push(`.</span>`); + r.push(`<span class="yellowgreen">${cashFormat(_income)}.</span>`); cashX(_income, "personalBusiness"); if (V.arcologies[0].FSRomanRevivalist !== "unset") { r.push(`Society <span class="green">approves</span> of your close attention to your own affairs; this advances your image as a `); @@ -500,9 +495,7 @@ App.EndWeek.personalBusiness = function() { } } else if ((V.cash > 1000)) { _income = Math.trunc(Math.min(3000 * Math.log(V.cash), V.cash * 0.07)); - r.push(`This week, your business endeavors made you <span class="yellowgreen">`); - cashFormat(_income); - r.push(`.</span>`); + r.push(`This week, your business endeavors made you <span class="yellowgreen">${cashFormat(_income)}.</span>`); cashX(_income, "personalBusiness"); } else { r.push(`You have enough cash to manage your affairs, but not enough to do much business.`); @@ -863,6 +856,7 @@ App.EndWeek.personalBusiness = function() { } } } + App.Events.addParagraph(el, r); if (V.secExpEnabled > 0) { if (V.SecExp.smilingMan.progress === 10 && random(1, 100) >= 85) { @@ -907,6 +901,7 @@ App.EndWeek.personalBusiness = function() { IncreasePCSkills('engineering', 0.1); } App.Events.addParagraph(el, r); + r = []; if (V.SecExp.buildings.weapManu) { r = []; -- GitLab