diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-01 18:47:55 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-01 18:47:55 +0200 |
commit | e37414887694d21aba5e14ea5c46987c8ea79711 (patch) | |
tree | 807422ca69be0d5a594ad5de8160cfeb33e4fe8b | |
parent | 708b21aea1d82ff88c4fd857badbe742837c28ec (diff) | |
download | plantagenet-e37414887694d21aba5e14ea5c46987c8ea79711.tar.gz |
don't show command highlight in battle
-rw-r--r-- | play.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -280,6 +280,8 @@ function is_lord_in_battle(lord) { } function is_lord_command(ix) { + if (view.battle) + return false return view.command === ix } |