guodong 2 년 전
부모
커밋
a9757d8acc
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      GameClient/Assets/Game/HotUpdate/Platform/QDManager.cs
  2. 1 1
      GameClient/Assets/Game/HotUpdate/ServerProxy/ShopSProxy.cs

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Platform/QDManager.cs

@@ -63,7 +63,7 @@
             }
         }
 
-        public static void Pay(int buyID, int count, string orderID)
+        public static void Pay(int buyID, int count, string orderID, long Price)
         {
             switch (LauncherConfig.ChannelId)
             {

+ 1 - 1
GameClient/Assets/Game/HotUpdate/ServerProxy/ShopSProxy.cs

@@ -47,7 +47,7 @@ namespace GFGGame
                     ItemCfg itemCfg = ItemCfgArray.Instance.GetCfg(shopCfg.itemId);
                     if (shopCfg.costType == CostType.RMB)
                     {
-                        QDManager.Pay(response.BuyId, response.Times, response.OrderId);
+                        QDManager.Pay(response.BuyId, response.Times, response.OrderId, response.Price);
                         return false;
                     }
                     else