diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-03-28 14:25:24 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 11:54:52 +0100 |
commit | 98afa285ac298ec092862324641b959d198e5c1f (patch) | |
tree | e1242d7ad9c2177b0910179000c14af124400b85 | |
parent | 1152edf9b51d381a8dc21712b1a731d73a46def2 (diff) | |
download | wilderness-war-98afa285ac298ec092862324641b959d198e5c1f.tar.gz |
Fix inverted logic when playing highlanders.
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8537,8 +8537,8 @@ states.british_regulars = { events.highlanders = { can_play() { if (game.events.pitt || game.year > 1758) - return true; - return can_place_in_british_ports(); + return can_place_in_british_ports(); + return false; }, play(card) { clear_undo(); // drawing leader from pool |