summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules.ts b/rules.ts
index 90db8b4..e15dc7f 100644
--- a/rules.ts
+++ b/rules.ts
@@ -1209,7 +1209,7 @@ function is_lord_on_calendar(lord: Lord) {
}
function is_lord_ready(lord: Lord) {
- return (is_lord_on_calendar(lord) && get_lord_calendar(lord) <= current_turn())
+ return (is_lord_on_calendar(lord) && get_lord_calendar(lord) <= current_turn() && !is_lord_in_exile(lord))
}
function get_lord_capability(lord: Lord, n: 0 | 1): Card {
@@ -3082,7 +3082,7 @@ function end_muster() {
}
function can_lord_muster(lord: Lord) {
- return is_lord_on_map(lord) && !get_lord_moved(lord)
+ return is_lord_on_map(lord) && !get_lord_moved(lord) && !is_lord_in_exile(lord)
}
function has_locale_to_muster(lord: Lord) {