fix(game): 修复游戏结束逻辑,弃牌的时候正确结算
- 将 room.roomResult() 替换为 room.endGame(),以确保在最后一轮后正确结束游戏master
parent
b134082820
commit
31f994343b
Binary file not shown.
|
|
@ -77,7 +77,7 @@ public class EXPlayerFoldState extends StateBase<EXPlayer> {
|
|||
if (room.nextRound==room.maxRound){
|
||||
room.endGame();
|
||||
}else {
|
||||
room.roomResult();
|
||||
room.endGame();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in New Issue