diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 10:53:58 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-20 10:53:58 +0100 |
commit | dab1c31ac0c6235dd4e1338a822f8e4ff062ac17 (patch) | |
tree | f3855b3ba8c16dded20d9249fbdb209893a150b7 /rules.js | |
parent | eb29b09b011e707d8eaa17dea476a0852e3fdecc (diff) | |
download | 1989-dawn-of-freedom-dab1c31ac0c6235dd4e1338a822f8e4ff062ac17.tar.gz |
Updates to log with AHBR
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -746,7 +746,7 @@ states.finish_do_support_check = { states.add_influence = {
inactive: 'add influence.',
prompt () {
- if (game.available_ops === 0) {
+ if (game.available_ops <= 0) {
view.prompt = 'Place influence: done.'
gen_action("done")
return
@@ -1974,7 +1974,7 @@ function add_infl(space) { game.available_ops -= 2
//Check if Austria Hungary Border Reopened was used to place last SP in a controlled space in East Germany. If so, game.available_op will be negative
if (game.available_ops < 0) {
- log(`Used +1 from C58`)
+ log(`Used +1 op from C58`)
}
} else {
game.available_ops--
|