diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -419,10 +419,6 @@ function has_enemy_pc(space) { return has_british_pc(space); } -function has_no_pc(space) { - return game.pc[space] != BRITISH && game.pc[space] != AMERICAN; -} - function is_adjacent_to_british_pc(a) { for (let b of SPACES[a].exits) if (has_british_pc(b)) @@ -936,7 +932,7 @@ function surrender_american_army(where) { function surrender_british_army(where) { let g = find_british_general(where); if (g) - capture_british_general(g); + capture_british_general(where); game.british_losses += count_british_cu(where); remove_cu(BRITISH, where, count_british_cu(where)); } |