diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index b617bfbc596902bccc90400025e0f49d79de37e9..85873bf81391662e2e26e4f00c3406d5a0cbe41a 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -3179,7 +3179,7 @@ window.cashX = function(cost, what, who) { if (typeof V.lastWeeksCashIncome[what] !== 'undefined') { V.lastWeeksCashIncome[what] += cost; } else { - V.lastWeeksErrors += `Unknown place "${what}",`; + V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`; } //record the slave, if available @@ -3196,7 +3196,7 @@ window.cashX = function(cost, what, who) { if (typeof V.lastWeeksCashExpenses[what] !== 'undefined') { V.lastWeeksCashExpenses[what] += cost; } else { - V.lastWeeksErrors += `Unknown place "${what}",`; + V.lastWeeksErrors += `Unknown place "${what}" charged you ${cost},`; } //record the slave, if available @@ -3213,10 +3213,7 @@ window.cashX = function(cost, what, who) { }; window.forceNeg = function(x) { - if (x > 0){ - x = Math.abs(x) * -1; - } - return x; + return -Math.abs(x); }; Number.prototype.toFixedHTML = function() { diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw index 8ac5d2cab7d906b841af64276c7689c0068ccd58..b4ee0cec07ba86552f87bfb1efd954aa66fa271c 100644 --- a/src/js/economyJS.tw +++ b/src/js/economyJS.tw @@ -983,7 +983,7 @@ window.cashX = function(cost, what, who) { if (typeof V.lastWeeksCashIncome[what] !== 'undefined') { V.lastWeeksCashIncome[what] += cost; } else { - V.lastWeeksErrors += `Unknown place "${what}",`; + V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`; } //record the slave, if available @@ -1000,7 +1000,7 @@ window.cashX = function(cost, what, who) { if (typeof V.lastWeeksCashExpenses[what] !== 'undefined') { V.lastWeeksCashExpenses[what] += cost; } else { - V.lastWeeksErrors += `Unknown place "${what}",`; + V.lastWeeksErrors += `Unknown place "${what}" charged you ${cost},`; } //record the slave, if available diff --git a/src/uncategorized/costsBudget.tw b/src/uncategorized/costsBudget.tw index 13126c8a9effb2cef8fb8c5036623ac42888622b..09994a3d9ff5125dc14680bf4e7f6b55bb0b97ac 100644 --- a/src/uncategorized/costsBudget.tw +++ b/src/uncategorized/costsBudget.tw @@ -409,8 +409,7 @@ for(var i = 0; i < State.variables.lastWeeksCashIncome.length; i++){ <td>[[Research Lab][$nextButton = "Back to Budget", $nextLink = "Costs Budget"]] maintenance</td> <td>@@.yellowgreen;<<print cashFormat(Math.trunc($lastWeeksCashIncome.lab))>>@@</td> <td> - <<set $lastWeeksCashExpenses.lab = (100*$researchLab.maxSpace)>> - <<= cashNumFormat($lastWeeksCashExpenses.lab)>> + @@.red;<<print cashFormat($lastWeeksCashExpenses.lab)>>@@ </td> <td> <<set $lastWeeksCashProfits.lab = ($lastWeeksCashIncome.lab + $lastWeeksCashExpenses.lab)>> @@ -957,7 +956,11 @@ for(var i = 0; i < State.variables.lastWeeksCashIncome.length; i++){ <td>@@.red;<<print cashFormat(Math.trunc($lastWeeksCashExpenses.rents))>>@@</td> <td> <<set $lastWeeksCashProfits.rents = ($lastWeeksCashIncome.rents + $lastWeeksCashExpenses.rents)>> - $lastWeeksCashIncome.rents + <<if $lastWeeksCashProfits.rents > 0>> + @@.yellowgreen;<<print cashFormat(Math.trunc($lastWeeksCashProfits.rents))>>@@ + <<else>> + @@.red;<<print cashFormat(Math.trunc($lastWeeksCashProfits.rents))>>@@ + <</if>> </td> </tr>