Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Made creatures summon to correct side of board.
Browse files Browse the repository at this point in the history
  • Loading branch information
browntj16 committed Apr 25, 2024
1 parent eccf6f3 commit beb1b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,11 +317,11 @@ function Board({ game, board}: { game: Game, board: SidedBoard}) {
<br></br>
<div className="flex flex-row justify-between justify-around">
{/**not sure if just printing the array will work*/}
{p1Board}
{p2Board}
</div>
<br></br>
<div className="flex flex-row justify-between justify-around">
{p2Board}
{p1Board}
</div>
<div>

Expand Down

0 comments on commit beb1b28

Please sign in to comment.