diff options
-rw-r--r-- | play.js | 4 | ||||
-rw-r--r-- | rules.js | 10 |
2 files changed, 2 insertions, 12 deletions
@@ -987,8 +987,8 @@ function layout_combat_marker() { function layout_turn_marker() { if (view.turn > 0) { let t = view.turn - 1 - let row = (t / 3) | 0 - let col = (t % 3) + let row = (t / 4) | 0 + let col = (t % 4) let x = 2267 + col * 45 let y = 79 + row * 52 ui.turn.style.left = x - 16 + "px" @@ -1858,16 +1858,6 @@ states.supply_done = { function end_supply() { delete game.supply - - // NOTE: Austria tactical card and supply steps after pragmatic - if (game.power === P_AUSTRIA) { - set_active_to_power(P_PRAGMATIC) - goto_tactical_cards() - return - } - if (game.power === P_PRAGMATIC) - set_active_to_power(P_AUSTRIA) - next_sequence_of_play() } |