From 65fda430b30ea9b3ee349581dfbd021bc4a4ed27 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 29 May 2024 13:07:40 +0200 Subject: tweak logging of end-turn --- play.css | 2 ++ rules.js | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/play.css b/play.css index 9913d57..6d922bc 100644 --- a/play.css +++ b/play.css @@ -135,6 +135,8 @@ body { } #log .h.fate { text-align: center; } +#log .h.fate::before { content: "\2014 " } +#log .h.fate::after { content: " \2014" } #log .h.prussia { background-color: var(--color-light-prussia); } #log .h.hanover { background-color: var(--color-light-hanover); } diff --git a/rules.js b/rules.js index d364ed5..b72f109 100644 --- a/rules.js +++ b/rules.js @@ -3036,7 +3036,7 @@ function goto_clock_of_fate() { return if (game.turn <= 5) { - log("# \u2014 " + game.turn + " \u2014") + log("# End of Turn " + game.turn) log("$" + (game.turn + 48 + 6)) } else { // remove non-stroke of fate card from last turn @@ -4180,7 +4180,7 @@ exports.setup = function (seed, scenario, options) { else if (game.scenario === 2) setup_the_austrian_theatre() else - log("# \u2014 " + 1756 + " \u2014") + log("# 1756") log("$54") -- cgit v1.2.3