diff options
-rw-r--r-- | play.css | 21 | ||||
-rw-r--r-- | rules.js | 6 |
2 files changed, 6 insertions, 21 deletions
@@ -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 ================= */
/*
@@ -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'
+ }
}
}
|