Bastien Sevajol 7 年前
父节点
当前提交
e3b6ba7a67
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      sandbox/engulf/behaviour.py

+ 1 - 0
sandbox/engulf/behaviour.py 查看文件

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