index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-08-02 14:37:20 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-08-02 14:37:20 -0700 |
commit | a042537c8eeff2e45bcc5d678e2657f4f542ec93 (patch) | |
tree | 6d7a5bc0ad04eb6cce6a1948cd8e8e671399bc87 /src/modules/record_sheet.js | |
parent | f6ee6e3560022c77724535c2f7abd98c474ced8c (diff) |
Fix firing arcs for squads
Diffstat (limited to 'src/modules/record_sheet.js')
-rw-r--r-- | src/modules/record_sheet.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/record_sheet.js b/src/modules/record_sheet.js index 931177f..684b84e 100644 --- a/src/modules/record_sheet.js +++ b/src/modules/record_sheet.js @@ -154,8 +154,8 @@ function createRecords(units) { return grouped; } -function getRecord({ dataset: { allegiance: al, number: n }}) { - const selector = `.soldier-record[data-number="${n}"][data-allegiance="${al}"]`; +function getRecord({ dataset: { allegiance: al, number: n, squad: s }}) { + const selector = `.soldier-record[data-number="${n}"][data-allegiance="${al}"][data-squad="${s}"]`; return document.querySelector(selector); } |