From 775a825265f88cc549ea8ebe8cee888b8db56bbc Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 1 Aug 2021 17:51:32 +0200 Subject: crusader: Fix Turcopoles draw placement in non-home seats. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3