diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-12-21 17:16:12 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:12:55 +0100 |
commit | 6fbbb30892744e164b294cc30a48112f2aa3f058 (patch) | |
tree | c89abc3d7153a83878f0e48214c57639cb8eb1d8 | |
parent | c177ac010e831e4fafceeb7a8d823f3b4ab72454 (diff) | |
download | richard-iii-6fbbb30892744e164b294cc30a48112f2aa3f058.tar.gz |
Some more log appearance tweaks.
-rw-r--r-- | ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ create_log_entry = function (text) { else if (text.match(/^Start York turn/)) p.className = 'Y'; else if (text.match(/^Start /)) - p.className = 'st'; + p.className = 'st', text = text.replace(/\.$/, ""); else if (text.match(/^Battle in/)) p.className = 'bs'; |