Skip to content

Commit

Permalink
Merge pull request #239 from ORNL-AMO/hotfix-any-bugs
Browse files Browse the repository at this point in the history
Landfill gas defaults to 0
  • Loading branch information
nbintertech authored Feb 29, 2024
2 parents 19bf896 + 9b00e8d commit 59552a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -646,15 +646,15 @@ export class App extends React.PureComponent<unknown, AppState> {
let updatingInitialTrackedStats: TrackedStats = {...initialTrackedStats};
let budget = 75_000;
let naturalGas = 120_000;
let hydrogen = 6_000;
let hydrogen = 0;
let electricity = 30_000_000;
let totalGameYears = 10;

if(userSettings.gameYearInterval == 2) {
budget = 150_000;
naturalGas = 240_000;
electricity = 60_000_000;
hydrogen = 120_000;
hydrogen = 0;
totalGameYears = 5;
}

Expand Down

0 comments on commit 59552a7

Please sign in to comment.