Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
zilvinas committed Oct 21, 2024
1 parent 72a152c commit bb15ad3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>puzzle 15 ml</title>
<script type="module" crossorigin src="/assets/index-Cfpjn6ah.js"></script>
<script type="module" crossorigin src="/assets/index-DJqDn2it.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CieBBP7a.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>puzzle 15 ml</title>
<script type="module" crossorigin src="dist/assets/index-Cfpjn6ah.js"></script>
<script type="module" crossorigin src="dist/assets/index-DJqDn2it.js"></script>
<link rel="stylesheet" crossorigin href="dist/assets/index-CieBBP7a.css">
</head>

Expand Down
4 changes: 2 additions & 2 deletions src/game-15-reconstruction/environment/GameUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ export class GameUtils {

// if (o === -1) v = "::";
// else
if (goals.includes(o)) v = 'x';
else if (goals.includes(e + 1)) v = 'o';
if (goals.includes(o)) v = 'o';
else if (goals.includes(e + 1)) v = 'O';
else v = '';

v += '\t';
Expand Down

0 comments on commit bb15ad3

Please sign in to comment.