From d44e3ab5baae666b979247b5b62842965f8645f9 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 10 Mar 2025 23:17:47 +0100 Subject: show initiative triangle pointing up/down to indicate turn order --- play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v1.2.3