summaryrefslogtreecommitdiff
path: root/ui.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-07-22 11:34:27 +0200
committerTor Andersson <tor@ccxvii.net>2022-11-16 19:19:39 +0100
commitc5bd03c1c31830e027ff75134ad80f5e2a8caf84 (patch)
treeae75fa7063cd9494254831c9cdc6a9cbed1e0db9 /ui.js
parentd29767d6c588c6ed049b9c62fe84cfbc05ce1b1e (diff)
downloadcrusader-rex-c5bd03c1c31830e027ff75134ad80f5e2a8caf84.tar.gz
crusader: Fix bug in Jihad selection and display.
Enemy of null is null!
Diffstat (limited to 'ui.js')
-rw-r--r--ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.js b/ui.js
index 22cbf08..41fe99e 100644
--- a/ui.js
+++ b/ui.js
@@ -668,7 +668,7 @@ function update_battle() {
class_name += " selected";
if (block === game.battle.halfhit)
class_name += " halfhit";
- if (game.battle.jihad === block_owner(block))
+ if (game.jihad === game.battle.town && block_owner(block) === game.p1)
class_name += " jihad";
if (game.battle.sallying.includes(block))