Skip to content

Commit

Permalink
Merge pull request #1846 from ineveraskedforthis/economy-tweaking
Browse files Browse the repository at this point in the history
Technology weight tweak
  • Loading branch information
schombert authored Jan 6, 2025
2 parents fd99152 + e03d8bc commit a270f90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ai/ai.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -479,13 +479,13 @@ void initialize_ai_tech_weights(sys::state& state) {
} else if(vals.offsets[i] == sys::national_mod_offsets::rgo_output) {
base *= 1.2f;
} else if(vals.offsets[i] == sys::national_mod_offsets::factory_output) {
base *= 2.0f;
base *= 3.0f;
} else if(vals.offsets[i] == sys::national_mod_offsets::factory_throughput) {
base *= 1.2f;
base *= 5.0f;
} else if(vals.offsets[i] == sys::national_mod_offsets::factory_input) {
base *= 2.0f;
base *= 3.0f;
} else if(vals.offsets[i] == sys::national_mod_offsets::tax_efficiency) {
base *= 5.0f;
base *= 3.0f;
}
}

Expand Down

0 comments on commit a270f90

Please sign in to comment.