# HG changeset patch # User Neil Muller # Date 1259276126 0 # Node ID 8fbff3505d1de312a288dab4b780517083c78020 # Parent d3ceb9e9c48eb6869e0e0169e3f049cef8e22060 Remove debugging print diff -r d3ceb9e9c48e -r 8fbff3505d1d gamelib/animal.py --- 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