diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-10-31 19:23:02 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-02 08:22:05 +0000 |
commit | 04490869aaf287131f8a15b286b704d2332f9102 (patch) | |
tree | 1423a0efb60b645d118dbb20d06e896cea166750 | |
parent | 04fcb8518cb5909b16a3d2bb3ed97efd8f8b4704 (diff) | |
download | 1989-dawn-of-freedom-04490869aaf287131f8a15b286b704d2332f9102.tar.gz |
Fix Kremlin Coup
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6903,7 +6903,7 @@ states.vm_kremlin_coup_sc_prep = { }, prompt() { view.prompt = `Kremlin Coup! Conduct a support check in ${country_name(game.vm_active_country)}'s Bureaucratic space.` - space(game.selected_space); + gen_action_space(game.selected_space); }, space(space) { push_undo() @@ -6995,7 +6995,7 @@ states.vm_malta_summit = { let roll = roll_d6() log(`Roll: D${roll}`) if (game.stability > 0) { - log(`+${game.stability} from USSR Stability Track`) + logi(`+${game.stability} from USSR Stability Track`) log(`Modified roll: ${roll + game.stability}`) } if (roll + game.stability > 3) { |