changeset 38:03121c89d5fd

Make the secret foxes really secret
author Neil Muller <drnlmuller@gmail.com>
date Mon, 31 Aug 2009 13:28:59 +0000
parents 497b53b69280
children ec79aabe2bf1
files gamelib/animal.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/animal.py	Mon Aug 31 13:27:27 2009 +0000
+++ b/gamelib/animal.py	Mon Aug 31 13:28:59 2009 +0000
@@ -10,7 +10,8 @@
     """Base class for animals"""
 
     def __init__(self, image, pos):
-        Sprite.__init__(self, image, pos)
+        # Create the animal somewhere far off screen
+        Sprite.__init__(self, image, (-1000, -1000))
         self.pos = pos
 
     def loop(self, tv, _sprite):