summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.ts b/rules.ts
index 4ad0882..4e2f1b5 100644
--- a/rules.ts
+++ b/rules.ts
@@ -3466,7 +3466,7 @@ states.levy_lord_at_seat = {
if (!found) {
for (let lord of all_friendly_lords()) {
let seat = get_lord_seat(lord)
- if ((is_lord_on_map(lord) || is_lord_on_calendar(lord)) && is_friendly_locale(seat)) {
+ if ((is_lord_on_map(lord) || is_lord_on_calendar(lord)) && (is_friendly_locale(seat) && !has_enemy_lord(seat))) {
if (is_move_allowed(game.who, seat))
gen_action_locale(seat)
}