diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2638,12 +2638,15 @@ function do_tst_attempt() { }
}
// Check whether The Reformer is playable:
- if ((game.dem_tst_position > game.com_tst_position)) {
+ if (game.dem_tst_position > game.com_tst_position) {
game.playable_cards[67].playable = DEM
}
- if ((game.dem_tst_position < game.com_tst_position)) {
+ if (game.dem_tst_position < game.com_tst_position) {
game.playable_cards[67].playable = COM
}
+ if (game.dem_tst_position === game.com_tst_position) {
+ game.playable_cards[67].playable = ''
+ }
}
function check_presence(country) {
|