소스 검색

comment note

Bastien Sevajol 9 년 전
부모
커밋
04005f9853
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      intelligine/synergy/event/transport/TakeableEvent.py

+ 1 - 1
intelligine/synergy/event/transport/TakeableEvent.py 파일 보기

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