DrBot7
					
					5 years ago
					
						
							committed by
							
								
								GitHub
							
						 
					
				 
				
			 
		 
		
			
				
					
					No known key found for this signature in database
					
						
							GPG Key ID: 4AEE18F83AFDEB23
						
					
				
			
		
		
		
	
		
			
				 1 changed files with 
8 additions and 
2 deletions
			 
			
		 
		
			
				- 
					
					
					 
					bot.py
				
 
			
		
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -36,6 +36,7 @@ logging.basicConfig(filename='console.log', | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					                    ) | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					logging.getLogger().addHandler(logging.StreamHandler(sys.stdout)) | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					@bot.event | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					async def on_ready(): | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    # Marks bot as running | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -207,7 +208,11 @@ async def on_message(message): | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					                await message.channel.send(embed=embed_var) | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    timings = bot.get_cog('Timings') | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    try: | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        await timings.analyze_timings(message) | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    except TypeError: | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        await message.channel.send("Uhh I seem to be broken. Please wait one moment as I get a dev to fix me..." | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					                                   "\n<@322764955516665856> YOU GOT A BUG COME FIX IT.") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    await bot.process_commands(message) | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -478,6 +483,7 @@ async def before_updater(): | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    logging.info('waiting to enter loop') | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    await bot.wait_until_ready() | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					for file_name in os.listdir('./cogs'): | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    if file_name.endswith('.py'): | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					        bot.load_extension(f'cogs.{file_name[:-3]}') | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  |