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