diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-07-22 18:18:50 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-07-22 18:18:50 +0200 |
commit | 67f1a56c1ba6424d071f874e90e48d32e27778ef (patch) | |
tree | b9358dea6050a288bb32b891f7177b710fdfb69d | |
parent | 12c0ebd73cb87e6d244658b5600a20b898b89548 (diff) | |
download | 300-earth-and-water-67f1a56c1ba6424d071f874e90e48d32e27778ef.tar.gz |
Don't clear "Acropolis on fire" after "Mines of Laurion" preparation step.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -842,11 +842,11 @@ states.greek_preparation_build = { flush_log("Greece raised:"); clear_undo(); game.talents = 0; - game.trigger.acropolis_on_fire = 0; if (game.greek.event === MINES_OF_LAURION) { game.discard.push(MINES_OF_LAURION) end_greek_operation(); } else { + game.trigger.acropolis_on_fire = 0; end_preparation_phase(); } }, |