Browse Source

万水千山

zhaoyang 2 years ago
parent
commit
a6fc5e458b

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Data/VO/PoemPhotoData.cs

@@ -46,7 +46,7 @@ namespace GFGGame
         /// <summary>
         /// <summary>
         /// Q版套装位置
         /// Q版套装位置
         /// </summary>
         /// </summary>
-        public int QSuitId;
+        public int TravelSuitId;
         /// <summary>
         /// <summary>
         /// Q版套装人物资源下标
         /// Q版套装人物资源下标
         /// </summary>
         /// </summary>

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

@@ -45,7 +45,7 @@ namespace GFGGame
                         photoData.LockingStatus = response.PictureInfosB[i].LockingStatus;
                         photoData.LockingStatus = response.PictureInfosB[i].LockingStatus;
 
 
                         photoData.TravelLocationId = response.PictureInfosB[i].TravelLocationId;
                         photoData.TravelLocationId = response.PictureInfosB[i].TravelLocationId;
-                        photoData.QSuitId = response.PictureInfosB[i].TravelLocationId;
+                        photoData.TravelSuitId = response.PictureInfosB[i].TravelSuitId;
                         photoData.ResourceIndex = response.PictureInfosB[i].TravelSuitResourceIndex;
                         photoData.ResourceIndex = response.PictureInfosB[i].TravelSuitResourceIndex;
                         photoData.PositionIndex = response.PictureInfosB[i].PositionIndex;
                         photoData.PositionIndex = response.PictureInfosB[i].PositionIndex;
                         Timers.inst.StartCoroutine(DownloadFile(photoData));
                         Timers.inst.StartCoroutine(DownloadFile(photoData));

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

@@ -35,7 +35,7 @@ namespace GFGGame
         public static async ETTask<bool> ReqGoTravel(List<int> qSuitIds)
         public static async ETTask<bool> ReqGoTravel(List<int> qSuitIds)
         {
         {
             S2C_TravelGuideGo response = null;
             S2C_TravelGuideGo response = null;
-            response = (S2C_TravelGuideGo)await MessageHelper.SendToServer(new C2S_TravelGuideGo() { SuitIds = qSuitIds });
+            response = (S2C_TravelGuideGo)await MessageHelper.SendToServer(new C2S_TravelGuideGo() { TravelSuitIds = qSuitIds });
 
 
             if (response != null)
             if (response != null)
             {
             {