changeset 508:8fbff3505d1d

Remove debugging print
author Neil Muller <drnlmuller@gmail.com>
date Thu, 26 Nov 2009 22:55:26 +0000
parents d3ceb9e9c48e
children 77a3f7f1c856
files gamelib/animal.py
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/animal.py	Thu Nov 26 22:52:31 2009 +0000
+++ b/gamelib/animal.py	Thu Nov 26 22:55:26 2009 +0000
@@ -470,7 +470,6 @@
                 return False
             for tpos in [pos + step for step in NEIGHBOUR_8]:
                 if self._is_fence(tpos) or self._cost_tile(tpos) >= COST_MARGIN:
-                    print 'border pos', pos, self._cost_tile(pos)
                     return True
             return False