diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-04-14 22:32:07 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-04-14 22:32:07 +0200 |
commit | acd4e8455018f52b08087add87ee517cc40c629a (patch) | |
tree | 76506c4271ed74b2577be5c72b2a77bb291c8e90 | |
parent | cea89eb1aae9435408c944fecf588f219abeae6c (diff) | |
download | land-and-freedom-acd4e8455018f52b08087add87ee517cc40c629a.tar.gz |
-rw-r--r-- | rules.js | 2 | ||||
-rw-r--r-- | rules.ts | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2261,7 +2261,7 @@ function card53_event2() { resolve_active_and_proceed(); } function card54_event1() { - const value = game.tracks[data_1.COLLECTIVIZATION] >= 8 ? 3 : 2; + const value = game.tracks[data_1.COLLECTIVIZATION] >= 6 ? 3 : 2; insert_after_active_node(resolve_effect((0, data_1.create_effect)('track', data_1.LIBERTY, value), 'player_event')); resolve_active_and_proceed(); } @@ -2745,7 +2745,7 @@ function card53_event2() { } function card54_event1() { - const value = game.tracks[COLLECTIVIZATION] >= 8 ? 3 : 2; + const value = game.tracks[COLLECTIVIZATION] >= 6 ? 3 : 2; insert_after_active_node( resolve_effect(create_effect('track', LIBERTY, value), 'player_event') ); |