changeset 382:15dcb9332e9b

Remove broken Thing.interact_without() calls
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 28 Aug 2010 18:47:53 +0200
parents 264aa4d37e19
children 30923e9408cd
files Resources/images/items/duct_tape.png Resources/images/items/fishbowl_helmet.png gamelib/scenes/engine.py
diffstat 3 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
Binary file Resources/images/items/duct_tape.png has changed
Binary file Resources/images/items/fishbowl_helmet.png has changed
--- a/gamelib/scenes/engine.py	Sat Aug 28 18:46:43 2010 +0200
+++ b/gamelib/scenes/engine.py	Sat Aug 28 18:47:53 2010 +0200
@@ -186,7 +186,6 @@
             return Result("It's wedged in there pretty firmly, it won't come out.")
         elif self.get_data('working'):
             return Result("You decide that working engines are more important than having a shiny superconductor.")
-        Thing.interact_without()
 
     def interact_with_machete(self, item):
         if self.get_data('present') and not self.get_data('working'):
@@ -194,7 +193,6 @@
             self.set_data('present', False)
             self.state.add_inventory_item('superconductor_broken')
             return Result("With leverage, the burned-out superconductor snaps out.")
-        Thing.interact_without()
 
     def interact_with_superconductor(self, item):
         if not self.get_data('present'):