From 990976293307ad261b7818b096d12f1b4746d8e7 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 8 Feb 2023 18:47:29 +0100 Subject: Only build Walls at friendly locale. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 6d64554..f965b42 100644 --- a/rules.js +++ b/rules.js @@ -6652,7 +6652,7 @@ function can_action_stone_kremlin() { let here = get_lord_locale(game.command) if (is_fort(here) || is_city(here) || here === LOC_NOVGOROD) { - if (has_walls(here)) + if (has_walls(here) || !is_friendly_locale(here)) return false return true } -- cgit v1.2.3