结算显示所有人手牌

master
DESKTOP-7R8JEQQ\k 2025-07-18 16:46:03 +08:00
parent 1c182f160d
commit f9615707f2
1 changed files with 5 additions and 2 deletions

View File

@ -575,9 +575,12 @@ end
-- 所有对家显示手牌
function M:ShowHand(msg)
local data = msg[1]
for _, infoView in pairs(self._player_card_info) do
infoView:ShowHand()
if infoView.class ~= "PlayerSelfCardInfoView" then
local cards = data.info_list[_].hand_card
infoView:ShowHand(cards)
end
end
end