changeset 101:19d784fd3918

Remove debugging prints (descriptions now provide pretty much the same feedback anyway).
author Simon Cross <simon@simonx>
date Tue, 24 Aug 2010 09:58:12 +0200
parents b5b6cbf556e6
children 322cbc0a8cce
files gamelib/state.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/state.py	Tue Aug 24 08:48:50 2010 +0200
+++ b/gamelib/state.py	Tue Aug 24 09:58:12 2010 +0200
@@ -324,11 +324,11 @@
 
     def enter(self, item):
         """Called when the cursor enters the Thing."""
-        print "Enter %r -> %r" % (item, self)
+        pass
 
     def leave(self):
         """Called when the cursr leaves the Thing."""
-        print "Leaves %r" % self
+        pass
 
     def interact(self, item):
         if not self.is_interactive():