1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-26 09:04:23 +02:00

fix: lint

This commit is contained in:
zyoshoka
2025-04-18 19:47:31 +09:00
parent 131605070a
commit 977218bda5
6 changed files with 661 additions and 621 deletions

View File

@@ -270,7 +270,7 @@ export class PlayerGameEngine {
doubleRiichi: this.state.doubleRiichis[house],
ippatsu: this.state.ippatsus[house],
rinshan: this.state.rinshanFlags[house],
haitei: this.state.tilesCount == 0,
haitei: this.state.tilesCount === 0,
});
const doraCount =
Common.calcOwnedDoraCount(handTiles.map(id => $type(id)), this.state.huros[house], this.doras) +
@@ -322,7 +322,7 @@ export class PlayerGameEngine {
riichi: this.state.riichis[house],
doubleRiichi: this.state.doubleRiichis[house],
ippatsu: this.state.ippatsus[house],
hotei: this.state.tilesCount == 0,
hotei: this.state.tilesCount === 0,
});
const doraCount =
Common.calcOwnedDoraCount(handTiles[house].map(id => $type(id)), this.state.huros[house], this.doras) +