diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-02 22:37:46 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-02 22:37:46 +0200 |
commit | 8be727bdbbd0b44f5c8426a065f850a6ed38407d (patch) | |
tree | 158eced5b62cb45fa7c1c6c3cf78c4a7babf4763 | |
parent | eb966be64133454be8ec91bf1f7462bacccb577a (diff) | |
download | plantagenet-8be727bdbbd0b44f5c8426a065f850a6ed38407d.tar.gz |
fix bug when command lord is no longer on the map
-rw-r--r-- | rules.ts | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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) || |