Remove debug print.
authorSimon Cross <hodgestar@gmail.com>
Sat, 10 Sep 2016 16:55:30 +0000 (18:55 +0200)
committerSimon Cross <hodgestar@gmail.com>
Sat, 10 Sep 2016 16:55:30 +0000 (18:55 +0200)
tabakrolletjie/enemies.py

index 46da6100c48513d382980b5e652c2d4510305c59..e4c868e89ae3dabd6d4ca6d3b9b08448ad93ce76 100644 (file)
@@ -107,9 +107,6 @@ class Mould(pymunk.Body):
             # We allow some overlap, hence not checking full radius
             query = space.point_query(pos, 8, MOULD_FILTER)
             if query:
-                # for x in query:
-                #     if not isinstance(x.shape.body, Mould):
-                #         print x.shape, x.shape.body
                 spawn = False
             if spawn:
                 child = Mould(gamestate, space, pos, self._resistances)