| 
					
				 | 
			
			
				@@ -111,6 +111,7 @@ namespace GFGGame 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public static int GetGuideCountCopy(string guideKey) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (!GuideController.useNewGuide) return 1; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if (GameGlobal.skipGuide) return 1; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             GuideCfg cfg = GuideCfgArray.Instance.GetCfg(guideKey); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (_dataDic.ContainsKey(cfg.id)) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -123,6 +124,7 @@ namespace GFGGame 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public static int GetGuideCountCopy(int guideId) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (!GuideController.useNewGuide) return 1; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if (GameGlobal.skipGuide) return 1; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (_dataDic.ContainsKey(guideId)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             { 
			 |