diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-06-29 20:19:51 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 11:54:52 +0100 |
commit | 1885656ef66700c4ad50cc71450ddf41fcde0b5d (patch) | |
tree | dff4f7d825638f0bc77d16ae6c6f81c6b6b3daa4 /rules.js | |
parent | 29f6a1a42060ce3a15b5d7e4bec0c538eb937085 (diff) | |
download | wilderness-war-1885656ef66700c4ad50cc71450ddf41fcde0b5d.tar.gz |
Fix bug with Mohawks event.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7249,8 +7249,8 @@ events.mohawks = { let s = piece_space(JOHNSON) if (within_two_of_canajoharie.includes(s)) if (is_piece_unbesieged(JOHNSON)) - return true - return can_place_or_restore_indians(first_mohawk, last_mohawk) + return can_place_or_restore_indians(first_mohawk, last_mohawk) + return false }, play() { if (can_place_indians(first_mohawk, last_mohawk)) { |