|  | @@ -410,7 +410,17 @@ async def vpn_handler(bot, event, command):
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  async def run_handler(bot, event, command):
 | 
	
		
			
				|  |  |    if command.argc < 1:
 | 
	
		
			
				|  |  | -    await event.reply('Пожалуйста, не оставляйте ввод пустым!')
 | 
	
		
			
				|  |  | +    async with ClientSession() as session:
 | 
	
		
			
				|  |  | +      try:
 | 
	
		
			
				|  |  | +        async with session.get(
 | 
	
		
			
				|  |  | +          'https://farlands.txlyre.website/langs'
 | 
	
		
			
				|  |  | +        ) as resp:
 | 
	
		
			
				|  |  | +          text = await resp.read()
 | 
	
		
			
				|  |  | +          text = text.decode('UTF-8')
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +          await event.reply(f'Доступные языки:\n`{text}`')
 | 
	
		
			
				|  |  | +      except:
 | 
	
		
			
				|  |  | +        await event.reply('Произошла ошибка при попытке обращения к API… :(')
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      return
 | 
	
		
			
				|  |  |  
 |