From 87653bc2974dc92cffe050062aa240b9183cf7d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BD=97=E5=AE=B6=E7=82=9C?= <2029049582@qq.com> Date: Tue, 29 Apr 2025 16:12:50 +0800 Subject: [PATCH] =?UTF-8?q?zhuangfenfanbei=E4=B8=8D=E6=98=AFzuangfenfanbei?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../extend_project/extend/majiang/fuzhou/EXGameInfo.lua | 4 ++-- .../poker/runfast/RunFast_PlayerSelfPokerInfoView.lua | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua b/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua index 03e02049..1868eb86 100644 --- a/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua +++ b/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua @@ -113,7 +113,7 @@ function M:SelectedConfigData() local fengding = _config:GetController("FengDing").selectedIndex local Tiandihu = _config:GetController("TianDiHu").selectedIndex local zikechengshun = _config:GetController("ZiKeChengShun").selectedIndex - local zuangfenfanbei = _config:GetController('ZhuangFenFanBei').selectedIndex + local zhuangfenfanbei = _config:GetController('ZhuangFenFanBei').selectedIndex local jiangma = Mathf.Round(_config:GetChild("n92").value) @@ -135,7 +135,7 @@ function M:SelectedConfigData() _data["fengding"] = fengding _data["Tiandihu"] = Tiandihu _data["zikechengshun"] = zikechengshun - _data["zuangfenfanbei"] = zuangfenfanbei + _data["zhuangfenfanbei"] = zhuangfenfanbei _data["jiangma"] = jiangma diff --git a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua index 0bf9c5c3..e65e8660 100644 --- a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua +++ b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua @@ -709,15 +709,20 @@ function M:TouchMoveEnd(context) end if card.btn_card.touchable == false or card.card_isTouchable == 1 then else - send_card[#send_card + 1] = card - self:SetBtnCardColor(card, 0) if (card.btn_card.x + oneCardWidth > min_x or (k == #self.card_list and card.btn_card.x + CardWidth > min_x)) and card.btn_card.x < max_x then self:UpdateCardMove(card.btn_card, not card.btn_card.selected, false) + if not card.btn_card.selected then + send_card[#send_card + 1] = card + end --ViewUtil.PlaySound("RunFastNew_PK", "extend/poker/paodekuai/sound/click.mp3") + else + if card.btn_card.selected then + send_card[#send_card + 1] = card + end end end end