diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-16 09:15:57 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-16 11:46:21 +0100 |
commit | 91932dc7d2b9c9b3888ec863cdbabe1df5b54c23 (patch) | |
tree | d6cf9e5e60a25b00cbd43b6c022d374f85134ec0 /rules.js | |
parent | 13fbd0c7b599c518388ed7ae5adb0b97aad0220c (diff) | |
download | 1989-dawn-of-freedom-91932dc7d2b9c9b3888ec863cdbabe1df5b54c23.tar.gz |
Fixed Helsinki Final Act applying to democrat
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1959,8 +1959,8 @@ function do_sc(space) { //Check Helsinki Final Act
- if (game.persistent_events['helsinki_final_act'] && (spaces[clicked_space].socio === 5 || spaces[clicked_space].socio === 6) ) {
- log('+1 VP from Helsinki Final Act')
+ if (game.active === COM && game.persistent_events['helsinki_final_act'] && (spaces[clicked_space].socio === 5 || spaces[clicked_space].socio === 6) ) {
+ log('+1 VP from C26')
game.vp ++
check_vp()
}
|