diff --git a/lua_probject/base_project/Game/View/PlayBackView.lua b/lua_probject/base_project/Game/View/PlayBackView.lua index 837f28d5..3a07d7f7 100644 --- a/lua_probject/base_project/Game/View/PlayBackView.lua +++ b/lua_probject/base_project/Game/View/PlayBackView.lua @@ -71,12 +71,12 @@ function M:InitView(url) local list = _room.player_list for i = 1, #list do local p = list[i] - if p.seat then - local info = _player_info[self:GetPos(p.seat)] - else - local info = _player_info[self:GetPos(1)] + local info = _player_info[self:GetPos(p.seat)] + if not p.seat or p.seat == 0 then + p.seat = i + info = _player_info[self:GetPos(i)] end - + info._view.visible = true info:FillData(p) info:MarkBank(p.seat == _room.banker_seat)