index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/gameboard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/gameboard.js b/src/modules/gameboard.js index 26e6c44..5851273 100644 --- a/src/modules/gameboard.js +++ b/src/modules/gameboard.js @@ -248,7 +248,7 @@ export function start(el) { } else if (toPlace && !occupant) { //soldier.place(svg, toPlace, this); top.collection.set(toPlace, { parent: top.cell }); - top.container.append(toPlace); + top.container.prepend(toPlace); //toPlace.removeEventListener('click', selectOffBoard); placing.push(toPlace); //getLockedSightLine(svg) ? updateSightLine(this) : clearSightLine(); |