zhaoyang преди 3 години
родител
ревизия
ebd2525cbc
променени са 2 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 2 2
      GameClient/Assets/Game/HotUpdate/Controller/GameController.cs
  2. 1 1
      GameClient/Assets/Game/HotUpdate/Views/MainUI/GMPanelView.cs

+ 2 - 2
GameClient/Assets/Game/HotUpdate/Controller/GameController.cs

@@ -98,13 +98,13 @@ namespace GFGGame
                            .SetLeftButton(true, "不用", (obj) =>
                            {
                                EnterGame();
-                               StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 0).Coroutine();
+                               StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 1).Coroutine();
                            })
                            .SetRightButton(true, "跳过", (obj) =>
                            {
                                GameGlobal.skipGuide = true;
                                EnterGame();
-                               StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 1).Coroutine();
+                               StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 2).Coroutine();
                            });
             }
             else

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Views/MainUI/GMPanelView.cs

@@ -120,7 +120,7 @@ namespace GFGGame
         }
         private async void OnClickBtnAll()
         {
-            bool result = await StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 1);
+            bool result = await StorageSProxy.ReqSetClientValue(ConstStorageId.STORAGE_SKIP_GUIDE, 2);
             if (result)
             {
                 GameGlobal.skipGuide = true;