diff --git a/src/Corporation/corporateLedger.js b/src/Corporation/corporateLedger.js index 8865d2744e0bf2060123f5f16e4cad71155bc399..c0038e471939a9b791283c1153f5944c2e366017 100644 --- a/src/Corporation/corporateLedger.js +++ b/src/Corporation/corporateLedger.js @@ -75,12 +75,14 @@ App.Corporate.writeLedger = function(ledger, week) { } createRow(tbody, "td", "Overhead", forceNeg(ledger.overhead)); let econNote = ''; - if (ledger.economy > 100) { - econNote = "* Profits benefited from a strong economy."; - } else if (ledger.economy > 60) { - econNote = "* Profits were lowered by the weak economy."; - } else { - econNote = "* Profits were severely depressed by the failing economy."; + if (V.difficultySwitch > 0) { + if (ledger.economy > 100) { + econNote = "* Profits benefited from a strong economy."; + } else if (ledger.economy > 60) { + econNote = "* Profits were lowered by the weak economy."; + } else { + econNote = "* Profits were severely depressed by the failing economy."; + } } createRow(tbody, "td", "Profit", ledger.profit, econNote);