diff options
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -364,6 +364,7 @@ const faction_class = { "0": "anarchist", "1": "communist", "2": "moderate", + "f": "fascist", } function update_front(status_card, str_container, con_container, front, front_id) { @@ -647,7 +648,7 @@ function on_log(text) { // eslint-disable-line no-unused-vars // text = text.replace(/\bHP\b/g, sub_token) if (text.startsWith("#")) { - p.className = "h " + text[1] + p.className = "h " + faction_class[text[1]] text = text.substring(3) } |