Bastien Sevajol 8 년 전
부모
커밋
e3b6ba7a67
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      sandbox/engulf/behaviour.py

+ 1 - 0
sandbox/engulf/behaviour.py 파일 보기

192
             return False
192
             return False
193
 
193
 
194
         for grass in self.simulation.collections.get(COLLECTION_GRASS, []):
194
         for grass in self.simulation.collections.get(COLLECTION_GRASS, []):
195
+            # TODO: Use simulation/xyz pre calculated indexes
195
             if grass.position == self.subject.position:
196
             if grass.position == self.subject.position:
196
                 return grass.id
197
                 return grass.id
197
 
198