Browse Source

remomve old comment

Bastien Sevajol 9 years ago
parent
commit
07054f84cd

+ 0 - 3
intelligine/simulation/object/brain/part/transport/TransportBrainPart.py View File

@@ -16,9 +16,6 @@ class TransportBrainPart(BrainPart):
16 16
 
17 17
     @classmethod
18 18
     def _objects_have_same_type(cls, context, object_carried_id, object_to_put_id):
19
-        # BUG: On considere ici que c une liste de type pour obj. J'ai fait l'inverse.
20
-        # Une listde de objid pour un type.
21
-        # TODO: Il faut inverser !
22 19
         object_carried_types = context.metas.list.get(TYPE, object_carried_id)
23 20
         for object_carried_type in object_carried_types:
24 21
             if context.metas.list.have(TYPE, object_to_put_id, object_carried_type):