summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-05-02 22:37:46 +0200
committerTor Andersson <tor@ccxvii.net>2024-05-02 22:37:46 +0200
commit8be727bdbbd0b44f5c8426a065f850a6ed38407d (patch)
tree158eced5b62cb45fa7c1c6c3cf78c4a7babf4763
parenteb966be64133454be8ec91bf1f7462bacccb577a (diff)
downloadplantagenet-8be727bdbbd0b44f5c8426a065f850a6ed38407d.tar.gz
fix bug when command lord is no longer on the map
-rw-r--r--rules.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/rules.ts b/rules.ts
index 99226c5..b38a2a6 100644
--- a/rules.ts
+++ b/rules.ts
@@ -3781,6 +3781,12 @@ states.command = {
prompt_held_event_at_campaign()
+ if (!is_lord_on_map(game.command)) {
+ view.prompt = `Command: ${lord_name[game.command]} is not on the map.`
+ view.actions.end_command = 1
+ return
+ }
+
// 4.3.2 Marshals MAY take other lords
if (
is_marshal(game.command) ||