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-07-25 12:42:10 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-07-25 12:42:10 -0700 |
commit | f503f974f37f1a1916189a033a1708689d512d35 (patch) | |
tree | 5e01e4ab46170a48c482641aa033873b81911373 /src/index.js | |
parent | f1d67663dab2fd084c7e3996a83d17e9a6c5e037 (diff) |
Clean up some counters code
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js index df48274..a951084 100644 --- a/src/index.js +++ b/src/index.js @@ -85,10 +85,10 @@ async function buildScenario(req) { // recordSheet.start(svg.querySelector('.start-locations'), gameboard.getUnits()); recordSheet.start(null, scenarioUnits); - const [trooper] = gameboard.getUnits(); - Observable.notify('select', trooper); - gameboard.setCounter('prone'); - gameboard.setCounter('1st-floor'); + //const [trooper] = gameboard.getUnits(); + //Observable.notify('select', trooper); + //gameboard.setCounter('prone'); + //gameboard.setCounter('1st-floor'); } function updateTurnCounter() { |