|  | @@ -8,7 +8,7 @@ class TakeableEvent(Event):
 | 
	
		
			
			| 8 | 8 |      def concern(self, object_id, context):
 | 
	
		
			
			| 9 | 9 |          return context.metas.states.have_list(object_id, [TRANSPORTER, ALIVE]) and \
 | 
	
		
			
			| 10 | 10 |                 context.metas.states.dont_have(object_id, CARRYING) and not \
 | 
	
		
			
			| 11 |  | -               context.metas.value.get(CANT_CARRY_STILL, object_id, allow_empty=True)
 | 
	
		
			
			|  | 11 | +               context.metas.value.get(CANT_CARRY_STILL, object_id, allow_empty=True) # TODO: si COLS: ca plus dans concern mais dans object_match
 | 
	
		
			
			| 12 | 12 |  
 | 
	
		
			
			| 13 | 13 |      def __init__(self, actions):
 | 
	
		
			
			| 14 | 14 |          super().__init__(actions)
 |