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-04-17 10:20:15 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-17 10:20:15 -0700 |
commit | 4229c732bca15f4563f596ca345d576984bc517a (patch) | |
tree | bc26701b2a96d0f6dfe813d252efff1420c4f0ed /src/modules/game.js | |
parent | 460027e96507c8015878a03f14508bd50d68e97f (diff) |
Use JS for damage indicator changes instead of CSS
Diffstat (limited to 'src/modules/game.js')
-rw-r--r-- | src/modules/game.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/modules/game.js b/src/modules/game.js index 2903b05..0435c28 100644 --- a/src/modules/game.js +++ b/src/modules/game.js @@ -142,7 +142,6 @@ export default class Game { this.setUpSightLine(this); this.setUpCounter(this); - // this.setUpRecordSheet(); this.setUpCells(); } @@ -343,7 +342,6 @@ export default class Game { if (selected) { this.Counter.endMove(selected); - // this.RecordSheet.endMove(); } } @@ -557,7 +555,6 @@ export default class Game { } } else { e.stopPropagation(); - // this.RecordSheet.select(e.target); container.Counter.select(e.target); } }, |