diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-07-08 00:53:40 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-08 11:42:33 +0200 |
commit | 8677280df35ec553da2583162a3ddf3a6da0bdf5 (patch) | |
tree | a1cf781a5e8aca8c17d73eb8b831f71dbc778f23 /play.js | |
parent | 0d0cf16d1273a3906b5d6a415d026fcb95d9bfff (diff) | |
download | time-of-crisis-8677280df35ec553da2583162a3ddf3a6da0bdf5.tar.gz |
Borders.
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -100,7 +100,7 @@ const CARD_MAP = [ "P3(Mobile Vulgus)", "M4(Praetorian Guard)", "S4(Damnatio Memoriae)", - "S4(Damnatio Memoriae)", + "S4(Damnatio Memoriae*)", "P4(Pretender)", "M4(Spiculum)", "S4(Triumph)", @@ -1560,6 +1560,8 @@ function sub_card_1(match) { function sub_card_x(match, p1, p2) { let x = CARD_MAP.indexOf(match) + if (p2 === "Damnatio Memoriae*") + p2 = "Damnatio Memoriae" return `<span class="tip ${match[0]}" onmouseenter="on_focus_influence_tip(${x})" onmouseleave="on_blur_tip()">${p1} ${p2}</span>` } |