diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-07-09 00:44:25 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-09 00:44:25 +0200 |
commit | 55c7b4ce80dfb49ee2452e56271bd78833e227d1 (patch) | |
tree | 26bfe93ff99bb9310d07786b479c1e971bdbde6a /rules.js | |
parent | 681559486720c909bdce708a3b9b21629ab47a1f (diff) | |
download | time-of-crisis-55c7b4ce80dfb49ee2452e56271bd78833e227d1.tar.gz |
Fix can_select_governor for hold games action.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1746,7 +1746,7 @@ function can_select_governor(id) { return true // Hold Game - if (game.pip >= 2 && get_mobs()) + if (game.pip >= 2 && get_mobs(where)) return true // Increase Support Level |