diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-27 09:01:29 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-27 09:01:29 +0100 |
commit | d1f9a29e44d16962c38aa836bd5106baafa6a118 (patch) | |
tree | 306304b4e094fc2d919e4e53e14bc161b99388ed /rules.js | |
parent | 2515f3d2752ad6765ccc89d5f906f03337aedcaa (diff) | |
download | 1989-dawn-of-freedom-d1f9a29e44d16962c38aa836bd5106baafa6a118.tar.gz |
Fix Foreign Television
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4866,6 +4866,7 @@ function vm_foreign_currency_debt_burden() { function vm_foreign_television() {
for (let i = 1 ; i < game.pieces.length; i++) {
+ let piece = game.pieces[i]
if (i === 12) {continue} /*Does not apply to Dresden*/
if (piece.comInfl > 0 ) {
game.valid_spaces.push(i)
|