diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-01-18 13:04:14 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-02-02 11:30:51 +0100 |
commit | 282c8b93f29c0d1e8cb363e3de8e2e339c77c58f (patch) | |
tree | b7b1a32feca00401bdf6b1520c7ea22fb7e7392c | |
parent | 24fd32b30ffdf4bd13ddaa20c2099c35b9244360 (diff) | |
download | time-of-crisis-282c8b93f29c0d1e8cb363e3de8e2e339c77c58f.tar.gz |
v3: bring back amphitheater improvement
-rw-r--r-- | rules.js | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -2504,13 +2504,10 @@ states.build_improvement = { view.color = POPULACE view.selected_region = game.where - - if (is_classic()) { - if (!has_amphitheater(game.where)) - view.actions.amphitheater = 1 - else - view.actions.amphitheater = 0 - } + if (!has_amphitheater(game.where)) + view.actions.amphitheater = 1 + else + view.actions.amphitheater = 0 if (!has_basilica(game.where)) view.actions.basilica = 1 |