This commit is contained in:
Aya Morisawa 2018-09-06 19:28:52 +09:00 committed by syuilo
parent 4a00c13b33
commit 40735ce76b
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ export default class Reversi {
*
*/
public get whiteCount() {
return count(BLACK, this.board);
return count(WHITE, this.board);
}
/**