diff gamelib/state.py @ 512:b10dae40dc32

Fix items.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 04 Sep 2010 10:38:14 +0200
parents 93ddcac0b772
children fda2b3a2f2e9
line wrap: on
line diff
--- a/gamelib/state.py	Sat Sep 04 09:53:00 2010 +0200
+++ b/gamelib/state.py	Sat Sep 04 10:38:14 2010 +0200
@@ -544,6 +544,9 @@
     def get_inverse_interact(self, tool):
         return getattr(tool, 'interact_with_' + self.tool_name, None)
 
+    def is_interactive(self):
+        return False
+
 
 class CloneableItem(Item):
     _counter = 0