diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1502,7 +1502,9 @@ states.vp_roll = { },
take () {
push_undo()
- permanently_remove(game.played_card)
+ //Find name of scoring card
+ let scoring_card = scoring_cards[countries.indexOf(game.pwr_struggle_in)]
+ permanently_remove(scoring_card)
take_power(game.pwr_struggle_in)
game.phase = 2
},
|