summaryrefslogtreecommitdiff
path: root/play.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2025-03-10 23:17:47 +0100
committerTor Andersson <tor@ccxvii.net>2025-03-10 23:17:47 +0100
commitd44e3ab5baae666b979247b5b62842965f8645f9 (patch)
treef10518cabd57dd18bd9706758189e636a3924b2c /play.js
parentd810213990bf433a2efa24440bcd7cb1699e6448 (diff)
downloadland-and-freedom-d44e3ab5baae666b979247b5b62842965f8645f9.tar.gz
show initiative triangle pointing up/down to indicate turn order
Diffstat (limited to 'play.js')
-rw-r--r--play.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/play.js b/play.js
index 0d77e55..9a687de 100644
--- a/play.js
+++ b/play.js
@@ -402,7 +402,7 @@ function update_stat_line(x) {
for (i = 0; i < view.hero_points[x]; ++i)
line += "\u272b"
if (view.initiative === x)
- line += " \u2bc5"
+ line += (view.year & 1) ? " \u2bc6" : " \u2bc5"
return line
}