|
@@ -388,11 +388,13 @@ namespace GFGGame
|
|
|
ViewManager.Show<OpenServerActivityView>();
|
|
|
}
|
|
|
|
|
|
- private static void OnCompletePriorStoryDialog(bool isSkip, object param)
|
|
|
+ private static void OnCompletePriorStoryDialog(bool done, object param)
|
|
|
{
|
|
|
- PlayerPrefs.SetString("seeOpenServerActivityStory" + GameGlobal.userId, "1");
|
|
|
- ViewManager.DeleteViewStackCountDown(null, 1);
|
|
|
- ViewManager.Show<OpenServerActivityView>();
|
|
|
+ if (done) {
|
|
|
+ PlayerPrefs.SetString("seeOpenServerActivityStory" + GameGlobal.userId, "1");
|
|
|
+ ViewManager.DeleteViewStackCountDown(null, 1);
|
|
|
+ ViewManager.Show<OpenServerActivityView>();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
private void OnClickBtnWanShiLi()
|