diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-14 15:56:18 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 2134b456150212808274fa0ec98c56d69c08d51a (patch) | |
tree | e1164c6e431b03d9367cf7ffae0eb6b88edafa7e /rules.js | |
parent | 77b270991aa4741870c8871c9bd3d5140c1cb969 (diff) | |
download | andean-abyss-2134b456150212808274fa0ec98c56d69c08d51a.tar.gz |
Add layout generation script to Makefile.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -319,7 +319,8 @@ exports.setup = function (seed, scenario, options) { game.deck.push(i) } - // game.deck[1] = /* TEST */ 73 + game.deck[0] = /* TEST */ 24 + game.capabilities = [ EVT_SUCUMBIOS, EVT_DARIEN ] log("DECK " + game.deck.join(", ")) update_control() @@ -4992,7 +4993,7 @@ states.process_place_shipments = { view.actions.end_process = 1 } else { for (let s = first_space; s <= last_space; ++s) { - if (has_cartels_base(s)) { + { // XXX if (has_cartels_base(s)) { gen_piece_in_space(s, FARC, GUERRILLA) gen_piece_in_space(s, AUC, GUERRILLA) gen_piece_in_space(s, CARTELS, GUERRILLA) |