From 58d7bb012ddfd2003cf5f806f9cce8639d4a2c91 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 27 十一月 2024 12:29:43 +0800 Subject: [PATCH] 10287 【英文】1折活动(orderCoin直接使用实际支付coin) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py index 6b100ba..00f681c 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py @@ -450,7 +450,7 @@ GameWorld.Log("英文1折充值验证至尊卡: orderInfo=%s,orderCoin=%s,orderID=%s" % (orderInfo, orderCoin, orderID), curPlayer.GetPlayerID()) orderCoinUsd = orderCoin # 入库的是美元分 payCoin = orderCoin - orderCoin = CommFunc.RMBToCoin(ipyData.GetPayRMBNum()) # 游戏内orderCoin为原价 + #orderCoin = CommFunc.RMBToCoin(ipyData.GetPayRMBNum()) # 游戏内orderCoin为原价,英文1折不需要修改coin,以实际传入的支付价值coin为准 usdMoney = ipyData.GetUsdMoney() if discountState else ipyData.GetPayRMBNum() GameWorld.Log(" 转化后: orderInfo=%s,orderCoin=%s,orderCoinUsd=%s,payCoin=%s" % (orderInfo, orderCoin, orderCoinUsd, payCoin), curPlayer.GetPlayerID()) addDRDict["orderCoin"] = orderCoin -- Gitblit v1.8.0