diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-03-10 23:17:47 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-03-10 23:17:47 +0100 |
commit | d44e3ab5baae666b979247b5b62842965f8645f9 (patch) | |
tree | f10518cabd57dd18bd9706758189e636a3924b2c /play.js | |
parent | d810213990bf433a2efa24440bcd7cb1699e6448 (diff) | |
download | land-and-freedom-d44e3ab5baae666b979247b5b62842965f8645f9.tar.gz |
show initiative triangle pointing up/down to indicate turn order
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |