From 4e02396991054acf4473d47ae3ae5a828ffb1cea Mon Sep 17 00:00:00 2001 From: iainp5 Date: Mon, 23 Sep 2024 08:08:45 +0100 Subject: Small updates --- rules.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 9538139..07f8913 100644 --- a/rules.js +++ b/rules.js @@ -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) { -- cgit v1.2.3