summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.ts b/rules.ts
index e620ad8..d306cf5 100644
--- a/rules.ts
+++ b/rules.ts
@@ -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: