Fix pool selection on turnless.

This commit is contained in:
yukirij 2024-12-17 19:14:10 -08:00
parent 3e32d556d2
commit 5eba110048

View File

@ -387,7 +387,7 @@ GAME.Game = class {
false,
play.to
);
this.pools[this.turn & 1].pieces[play.from] -= 1;
this.pools[player].pieces[play.from] -= 1;
this.turn++;
} break;