1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-26 02:39:27 -05:00
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);
}
/**