This commit is contained in:
Aya Morisawa
2018-09-06 19:28:52 +09:00
committed by syuilo
parent 4a00c13b33
commit 40735ce76b

View File

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