summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriainp5 <iain.pearce.ip@gmail.com>2024-09-21 19:59:10 +0100
committeriainp5 <iain.pearce.ip@gmail.com>2024-09-21 19:59:10 +0100
commita1e9567b3b4c2b2326abefae47c99ba874ee2c26 (patch)
treec96c1a4720581b3e3237852f963aa7af2a7e0756
parenta16e24c705fd1f98caf4332b734ff9d616705f4f (diff)
download1989-dawn-of-freedom-a1e9567b3b4c2b2326abefae47c99ba874ee2c26.tar.gz
Updates to styling
-rw-r--r--play.css21
-rw-r--r--rules.js6
2 files changed, 6 insertions, 21 deletions
diff --git a/play.css b/play.css
index b92274d..37cfbee 100644
--- a/play.css
+++ b/play.css
@@ -425,6 +425,7 @@ left: 660px}
.event-marker.aside {
border: solid black 1.5px;
margin: 3px;
+ position: relative;
}
#turn_info {
@@ -444,27 +445,11 @@ left: 660px}
}
-#eco_glasnost {
- position: relative;
- /*top: 1500px;
- left: 1050px;*/
-}
-
-#helsinki_final_act {
- position: relative;
- display: flex;
-}
#solidarity_legalised {
top: 216px;
left: 612px;
}
-#st_nicholas_church {
- position: relative;
- /*top: 181px;
- left: 320px;*/
-}
-
#systematization {
height: 65px;
width: 65px;
@@ -480,10 +465,6 @@ left: 660px}
left: 170px;
}
-#we_are_the_people {
- position: relative;
-}
-
/* =========== CARDS ================= */
/*
diff --git a/rules.js b/rules.js
index 1265b8d..ed69ff5 100644
--- a/rules.js
+++ b/rules.js
@@ -873,7 +873,11 @@ states.tst_goddess = {
log_side()
}
game.phase = 0
- game.state = 'choose_card'
+ if (game.persistent_events['general_strike']) {
+ game.state = 'general_strike'
+ } else {
+ game.state = 'choose_card'
+ }
}
}