zhaoyang 3 жил өмнө
parent
commit
ebd2525cbc

+ 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;