diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-28 07:34:14 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-28 07:34:14 +0100 |
commit | 6583124a109c4d171e0db2c81927ae14aa0daa54 (patch) | |
tree | 6c7a17fe0506d3ed3ce7e8761343cd29fe776344 /rules.js | |
parent | f2d87494397dcf9b792a27e1098e7b7a6c63c20e (diff) | |
download | 1989-dawn-of-freedom-6583124a109c4d171e0db2c81927ae14aa0daa54.tar.gz |
Debugging Reformer
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -524,6 +524,7 @@ states.play_card ={ }
// Check for Reformer Rehabilitated
+ console.log('game.active', game.active, 'game.playable_cards[67].playable', game.playable_cards[67].playable)
if (game.played_card === 67){
if (game.active === DEM && game.playable_cards[67].playable === DEM) {
gen_action('event')
@@ -2772,6 +2773,7 @@ function do_tst_attempt() { if (game.dem_tst_position === game.com_tst_position) {
game.playable_cards[67].playable = ''
}
+ console.log('game.playable_cards[67].playable', game.playable_cards[67].playable)
}
function check_presence(country) {
|