瀏覽代碼

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)