This commit is contained in:
syuilo
2024-01-28 20:20:18 +09:00
parent db7bd0e94e
commit 366fade8d3
4 changed files with 205 additions and 83 deletions

View File

@@ -38,7 +38,7 @@ class MahjongRoomChannel extends Channel {
case 'ready': this.ready(body); break;
case 'updateSettings': this.updateSettings(body.key, body.value); break;
case 'addAi': this.addAi(); break;
case 'dahai': this.dahai(body.tile); break;
case 'dahai': this.dahai(body.tile, body.riichi); break;
case 'ron': this.ron(); break;
case 'pon': this.pon(); break;
case 'nop': this.nop(); break;
@@ -68,10 +68,10 @@ class MahjongRoomChannel extends Channel {
}
@bindThis
private async dahai(tile: string) {
private async dahai(tile: string, riichi = false) {
if (this.user == null) return;
this.mahjongService.op_dahai(this.roomId!, this.user, tile);
this.mahjongService.op_dahai(this.roomId!, this.user, tile, riichi);
}
@bindThis