|
@@ -122,7 +122,7 @@ namespace GFGGame
|
|
|
InstanceZonesDataManager.GetCanFightTime(_type, _storyType, _levelID, out int times, out string title);
|
|
|
if (times > 0)
|
|
|
{
|
|
|
- ViewManager.Show(ViewName.STORY_FIGHT_QUICKLY_VIEW, 1, new object[] { typeof(StoryLevelInfoView).Name, this.viewData });
|
|
|
+ ViewManager.Show(ViewName.STORY_FIGHT_QUICKLY_VIEW, 1, new object[] { typeof(StoryLevelInfoView).FullName, this.viewData });
|
|
|
this.Hide();
|
|
|
}
|
|
|
else
|
|
@@ -168,13 +168,13 @@ namespace GFGGame
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- ViewManager.Show(ViewName.STORY_FIGHT_QUICKLY_VIEW, times, new object[] { typeof(StoryLevelInfoView).Name, this.viewData });
|
|
|
+ ViewManager.Show(ViewName.STORY_FIGHT_QUICKLY_VIEW, times, new object[] { typeof(StoryLevelInfoView).FullName, this.viewData });
|
|
|
this.Hide();
|
|
|
}
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- ViewManager.Show(ViewName.STORY_FIGHT_QUICKLY_VIEW, times, new object[] { typeof(StoryLevelInfoView).Name, this.viewData });
|
|
|
+ ViewManager.Show(ViewName.STORY_FIGHT_QUICKLY_VIEW, times, new object[] { typeof(StoryLevelInfoView).FullName, this.viewData });
|
|
|
this.Hide();
|
|
|
|
|
|
}
|