guodong 2 жил өмнө
parent
commit
a9757d8acc

+ 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