diff options
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2423,7 +2423,7 @@ function get_max_value_for_track(track_id: number) { function get_min_value_for_track(track_id: number) { switch (track_id) { case GOVERNMENT: - const min_gov = game.tracks[SOVIET_SUPPORT] >= 8 ? 4 : 1; + const min_gov = game.tracks[SOVIET_SUPPORT] >= 8 ? 1 : 4; return Math.min(min_gov, game.tracks[GOVERNMENT]); case LIBERTY: case COLLECTIVIZATION: |