Skip to content

Commit

Permalink
Enable AI paving at $350k
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Aug 24, 2024
1 parent 601d448 commit 334673d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hu/openig/mechanics/ColonyPlanner.java
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ boolean powerPlantConstructing(AIPlanet p) {

boolean checkPavement(final AIPlanet planet) {
// consider only when the player is very rich
if (world.money < 1000 * 1000) {
if (world.money < 350 * 1000) {
return false;
}
List<SurfaceFeature> features = new ArrayList<>();
Expand Down

0 comments on commit 334673d

Please sign in to comment.