From ed03b29d9b96bf039c189984ae7511f6f7ba4683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BD=97=E5=AE=B6=E7=82=9C?= <2029049582@qq.com> Date: Sun, 22 Jun 2025 18:25:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=A7=82=E6=88=98=EF=BC=8C?= =?UTF-8?q?=E5=81=87=E8=AE=BE=E7=8E=A9=E5=AE=B6=E5=BA=A7=E4=BD=8D=E5=8F=B7?= =?UTF-8?q?=E4=B8=BA0=E5=81=9A=E6=8E=92=E9=94=99=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua_probject/base_project/Game/View/PlayBackView.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)