Browse Source

comment note

Bastien Sevajol 9 years ago
parent
commit
04005f9853
1 changed files with 1 additions and 1 deletions
  1. 1 1
      intelligine/synergy/event/transport/TakeableEvent.py

+ 1 - 1
intelligine/synergy/event/transport/TakeableEvent.py View File

@@ -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)