This commit is contained in:
mehbark 2023-03-27 14:52:00 -04:00
parent 9d5da383f6
commit ee4223581c
2 changed files with 5 additions and 1 deletions

View file

@ -118,5 +118,10 @@
<div id="players">
<h1>Players: (click name to toggle strikethrough)</h1>
</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>
</html>

View file

@ -603,7 +603,6 @@ const board = document.getElementById("board");
const game = new Chess();
function computer_move() {
num_moves++;
console.log(num_moves);
return todays_player.f(game);
}
// might want to change this when it's more wordly