diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-08-01 17:51:32 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:19:39 +0100 |
commit | 775a825265f88cc549ea8ebe8cee888b8db56bbc (patch) | |
tree | 2abddb4afdf79f4e62e4febf5c85887315c9026d | |
parent | 75a430504daec20eac0438e1a6226c02f8043395 (diff) | |
download | crusader-rex-775a825265f88cc549ea8ebe8cee888b8db56bbc.tar.gz |
crusader: Fix Turcopoles draw placement in non-home seats.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3289,7 +3289,7 @@ states.draw_phase = { log(game.active + " place drawn block in " + where + "."); game.location[game.who] = where; - if (type === 'outremers' || type === 'emirs' || type === 'nomads') { + if (type === 'turcopoles' || type === 'outremers' || type === 'emirs' || type === 'nomads') { console.log("DRAW", type, where, game.who, is_home_seat(where, game.who)); if (is_home_seat(where, game.who)) game.steps[game.who] = block_max_steps(game.who); |