diff --git a/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs b/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs index 4667186..16d2ba8 100644 --- a/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs +++ b/Forest/Assets/Scripts/Framework/UI/Other/UIUserAgreementController.cs @@ -3,6 +3,7 @@ using Framework.BI; using Framework.UI; using UnityEngine.UI; using Framework.Event; +using Gameplay.Manager; using Framework.Setting; using Framework.Constants; @@ -36,6 +37,8 @@ public class UIUserAgreementController : UIWindow private void OnAgree() { CloseWindow(true); + if (LevelSelectManager.Instance.CurPassLevelIndex < 1) + GuideMananger.Instance.StartGroupGuide(); SettingManager.Instance.SetFirstLaunch(); BIManager.Instance.TrackEventOnce(cfg.BI.EventFirst.fte_privacy_agree); }