summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-08-01 17:51:32 +0200
committerTor Andersson <tor@ccxvii.net>2022-11-16 19:19:39 +0100
commit775a825265f88cc549ea8ebe8cee888b8db56bbc (patch)
tree2abddb4afdf79f4e62e4febf5c85887315c9026d /rules.js
parent75a430504daec20eac0438e1a6226c02f8043395 (diff)
downloadcrusader-rex-775a825265f88cc549ea8ebe8cee888b8db56bbc.tar.gz
crusader: Fix Turcopoles draw placement in non-home seats.
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 5ab6a4c..ae1f7fd 100644
--- a/rules.js
+++ b/rules.js
@@ -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);