From b13fe2a8ded8304c4f9590af5cb7db6269f07421 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 6 Nov 2021 01:31:02 +0100 Subject: richard: Fix bug when entering Lancastrian pretender. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 005f16b..bbc271f 100644 --- a/rules.js +++ b/rules.js @@ -643,7 +643,7 @@ function is_enemy_exile_area(where) { } function is_pretender_exile_area(where) { - return (game.pretender === LANCASTER) ? is_lancaster_exile_area(where) : is_york_exile_area(where); + return (block_owner(game.pretender) === LANCASTER) ? is_lancaster_exile_area(where) : is_york_exile_area(where); } function can_recruit_to(who, to) { -- cgit v1.2.3