mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 18:37:30 -07:00
Fix bug (#2638)
This commit is contained in:
parent
333d72495d
commit
bf69e1c764
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ export default class Reversi {
|
||||||
* 白石の数
|
* 白石の数
|
||||||
*/
|
*/
|
||||||
public get whiteCount() {
|
public get whiteCount() {
|
||||||
return count(BLACK, this.board);
|
return count(WHITE, this.board);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue