From 7680628caef500413c8041fce62cd6e7ddc42029 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 4 Jun 2024 21:51:57 +0200 Subject: fix france home space list --- info/readme.html | 2 +- play.css | 4 ++-- play.js | 2 +- rules.js | 1 - 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/info/readme.html b/info/readme.html index 513f00c..7619f2f 100644 --- a/info/readme.html +++ b/info/readme.html @@ -33,7 +33,7 @@ All recruiting is done at the end of your moves. After you click [End Movement] How do I recruit eliminated generals and supply trains?

-Select them where they are placed off-map (at the top near "FRIEDRICH") to bring them back to your depot. +Select them where they are placed off-map (near the top of the map) to bring them back to your depot.


diff --git a/play.css b/play.css index d6a3b9e..56b77ed 100644 --- a/play.css +++ b/play.css @@ -472,8 +472,8 @@ body.shift span.value.deck_5 { background-color: #0002 } border-radius: 16px; } -.card.fate { cursor: zoom-in } -.card.fate.zoom { cursor: zoom-out } +.card.fate.face { cursor: zoom-in } +.card.fate.face.zoom { cursor: zoom-out } .draw-break { margin-left: 167px; } .card.tc { margin-right: calc(-167px + 40px); } diff --git a/play.js b/play.js index 4063a5a..15264b3 100644 --- a/play.js +++ b/play.js @@ -567,7 +567,7 @@ function make_fate_card(fc) { if (fc === 0) e.className = "card fate reverse" else - e.className = "card fate c" + fc + e.className = "card fate face c" + fc e.onclick = on_click_fate_card return e } diff --git a/rules.js b/rules.js index 2406179..1506571 100644 --- a/rules.js +++ b/rules.js @@ -135,7 +135,6 @@ const all_home_or_depot_cities = [ data.country.Sweden, data.country.Austria, set_union(data.country.Empire, data.country.Saxony), - find_city_list([ "Hildburghausen" ]), find_city_list([ "Koblenz", "Gemünden" ]), ] -- cgit v1.2.3