diff --git a/src/App.tsx b/src/App.tsx index 69eda90..f4a7c08 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -558,7 +558,8 @@ export class App extends React.PureComponent { }); } else if (this.state.gameSettings.costSavingsCarryoverYears == 'oneYear') { - newBudget += yearCostSavings.electricity + yearCostSavings.naturalGas; + let energyCostSavings: number = (yearCostSavings.electricity + yearCostSavings.naturalGas) * 0.5; + newBudget += energyCostSavings; }