diff options
-rw-r--r-- | rules.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6791,7 +6791,11 @@ states.validate_movement = { dont_snap: true, inactive: "confirm that promises were kept", prompt() { - let other = current_sequence_of_play().power + let other = game.restart.power + if (other === P_PRAGMATIC && game.power === P_PRAGMATIC) + other = P_AUSTRIA + else if (other === P_AUSTRIA && game.power === P_AUSTRIA) + other = P_PRAGMATIC prompt("Did " + power_name[other] + " keep their movement promise?") view.actions.keep = 1 view.actions.break = 1 |