links
This commit is contained in:
parent
9d5da383f6
commit
ee4223581c
2 changed files with 5 additions and 1 deletions
|
@ -118,5 +118,10 @@
|
||||||
<div id="players">
|
<div id="players">
|
||||||
<h1>Players: (click name to toggle strikethrough)</h1>
|
<h1>Players: (click name to toggle strikethrough)</h1>
|
||||||
</div>
|
</div>
|
||||||
|
<footer>
|
||||||
|
<a href="http://tom7.org/chess">Piece sprites, board colors, algorithms, etc.</a>
|
||||||
|
<a href="https://git.pyrope.net/mbk/elo-worldle">Code</a>
|
||||||
|
<a href="https://elo-worldle.pyrope.net/paper.pdf">Paper</a>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
1
main.js
1
main.js
|
@ -603,7 +603,6 @@ const board = document.getElementById("board");
|
||||||
const game = new Chess();
|
const game = new Chess();
|
||||||
function computer_move() {
|
function computer_move() {
|
||||||
num_moves++;
|
num_moves++;
|
||||||
console.log(num_moves);
|
|
||||||
return todays_player.f(game);
|
return todays_player.f(game);
|
||||||
}
|
}
|
||||||
// might want to change this when it's more wordly
|
// might want to change this when it's more wordly
|
||||||
|
|
Loading…
Reference in a new issue