diff options
-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--
|