|  | @@ -1,6 +1,6 @@
 | 
	
		
			
			| 1 | 1 |  from xyzworld.display.Pygame import Pygame as XyzPygame
 | 
	
		
			
			| 2 | 2 |  import pygame
 | 
	
		
			
			| 3 |  | -from intelligine.cst import PHEROMON_INFOS, PHEROMON_DIRECTION, PHEROMON_DIR_EXPLO, PHEROMON_POSITIONS
 | 
	
		
			
			|  | 3 | +from intelligine.cst import PHEROMON_INFOS, PHEROMON_DIRECTION, PHEROMON_DIR_HOME, PHEROMON_POSITIONS
 | 
	
		
			
			| 4 | 4 |  from intelligine.synergy.object.ant.Pheromon import Pheromon
 | 
	
		
			
			| 5 | 5 |  
 | 
	
		
			
			| 6 | 6 |  
 | 
	
	
		
			
			|  | @@ -20,7 +20,7 @@ class Pygame(XyzPygame):
 | 
	
		
			
			| 20 | 20 |          for point in pheromones_positions:
 | 
	
		
			
			| 21 | 21 |              exploration_info = context.pheromones().get_info(point,
 | 
	
		
			
			| 22 | 22 |                                                               [PHEROMON_DIRECTION,
 | 
	
		
			
			| 23 |  | -                                                              PHEROMON_DIR_EXPLO],
 | 
	
		
			
			|  | 23 | +                                                              PHEROMON_DIR_HOME],
 | 
	
		
			
			| 24 | 24 |                                                               allow_empty=True,
 | 
	
		
			
			| 25 | 25 |                                                               empty_value={})
 | 
	
		
			
			| 26 | 26 |  
 |