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-26 21:50:22 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-26 21:50:22 -0700 |
commit | bcd34e76db0e169b6e6e1b2d3f50cba35666e4e1 (patch) | |
tree | 30dbb01efda22215abc7a494f7a96793f786a2f9 /src/modules/game/sightLine.js | |
parent | ea3341323a843147e8dc57b8a60a33ff92ec81d9 (diff) |
Remove calling firing arc module with 'new'
Diffstat (limited to 'src/modules/game/sightLine.js')
-rw-r--r-- | src/modules/game/sightLine.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/game/sightLine.js b/src/modules/game/sightLine.js index ae46265..8c3be37 100644 --- a/src/modules/game/sightLine.js +++ b/src/modules/game/sightLine.js @@ -167,10 +167,10 @@ export default function(svg, board) { } return { - draw: draw, - clear: clear, - update: update, - toggleLock: toggleLock, + draw, + clear, + update, + toggleLock, get sightLine() { return sightLine; |