diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-06-14 22:54:19 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-06-14 22:54:19 +0900 |
| commit | 2bd03ca72546bfc4a42551893f2d8f11f1bf6861 (patch) | |
| tree | ae35d989983aa69de930d85240c1fe7110abb3b3 /src/games | |
| parent | image以外はproxyしないように (#5051) (diff) | |
| download | misskey-2bd03ca72546bfc4a42551893f2d8f11f1bf6861.tar.gz misskey-2bd03ca72546bfc4a42551893f2d8f11f1bf6861.tar.bz2 misskey-2bd03ca72546bfc4a42551893f2d8f11f1bf6861.zip | |
Use halfwidth space instead of fullwidth space in code (#5054)
Diffstat (limited to 'src/games')
| -rw-r--r-- | src/games/reversi/core.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/games/reversi/core.ts b/src/games/reversi/core.ts index cf8986263b..09d23e2b70 100644 --- a/src/games/reversi/core.ts +++ b/src/games/reversi/core.ts @@ -257,7 +257,7 @@ export default class Reversi { public get winner(): Color | null { return this.isEnded ? this.blackCount == this.whiteCount ? null : - this.opts.isLlotheo === this.blackCount > this.whiteCount ? WHITE : BLACK : + this.opts.isLlotheo === this.blackCount > this.whiteCount ? WHITE : BLACK : undefined as never; } } |