diff --git a/src/Corporation/corporateLedger.js b/src/Corporation/corporateLedger.js index dcc17d3418d047286dbca48b1e1150e0d76aea5c..c0038e471939a9b791283c1153f5944c2e366017 100644 --- a/src/Corporation/corporateLedger.js +++ b/src/Corporation/corporateLedger.js @@ -75,13 +75,14 @@ App.Corporate.writeLedger = function(ledger, week) { } createRow(tbody, "td", "Overhead", forceNeg(ledger.overhead)); let econNote = ''; - if (V.difficultySwitch == 0) { - } else 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);