diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 0e119117a35f8dbb5f0f2b24cec9a700852104b3..f7aac9834130a0938bd36026ebe87408d7a06e51 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -3180,7 +3180,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 @@ -3197,7 +3197,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 @@ -3214,10 +3214,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() { @@ -5755,8 +5752,10 @@ if(eventSlave.fetish != "mindbroken") { if(eventSlave.devotion > 20) { if(eventSlave.trust > 20) { if(eventSlave.speechRules != "restrictive") { - if(setup.modestClothes.includes(eventSlave.clothes)) { - State.variables.RESSevent.push("modest clothes"); + if(eventSlave.choosesOwnClothes !== 1) { + if(setup.modestClothes.includes(eventSlave.clothes)) { + State.variables.RESSevent.push("modest clothes"); + } } } } diff --git a/src/SecExp/seeUnit.tw b/src/SecExp/seeUnit.tw index 4482a5eb0c0d9a3a7884a5fe879968cc90804b4a..fa98c10c18ce6212a68c86dafd7f51c3ceb2d203 100644 --- a/src/SecExp/seeUnit.tw +++ b/src/SecExp/seeUnit.tw @@ -397,7 +397,7 @@ <br> <<link "Improve weaponry and equipment" "seeUnit">> <<set $mercUnits[$targetIndex].equip += 1>> - <<run cashX(forceNeg($equipUpgradeCost * $mercUnits[$targetIndex].maxTroops) + 1000), "securityExpansion")>> + <<run cashX(forceNeg(($equipUpgradeCost * $mercUnits[$targetIndex].maxTroops) + 1000), "securityExpansion")>> <</link>> Invest in better equipment for your soldiers to increase their battle effectiveness. <br>//Costs <<print cashFormat(($equipUpgradeCost * $mercUnits[$targetIndex].maxTroops) + 1000)>> and will increase attack and defense value of the unit by 15% for every upgrade.// 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/js/eventSelectionJS.tw b/src/js/eventSelectionJS.tw index 5eed01ddade14361414ba4c7706cf0d1f195f98e..a9797ef3270ddfefb59c43133605840259998bd5 100644 --- a/src/js/eventSelectionJS.tw +++ b/src/js/eventSelectionJS.tw @@ -787,8 +787,10 @@ if(eventSlave.fetish != "mindbroken") { if(eventSlave.devotion > 20) { if(eventSlave.trust > 20) { if(eventSlave.speechRules != "restrictive") { - if(setup.modestClothes.includes(eventSlave.clothes)) { - State.variables.RESSevent.push("modest clothes"); + if(eventSlave.choosesOwnClothes !== 1) { + if(setup.modestClothes.includes(eventSlave.clothes)) { + State.variables.RESSevent.push("modest clothes"); + } } } } 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>