changeset 474:4060e2dd4757

Add missing item parameter to bridge interact_with_foos
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 29 Aug 2010 11:13:51 +0200
parents 3032cfe783cf
children ee6dfee88912
files gamelib/scenes/bridge.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/scenes/bridge.py	Sun Aug 29 10:09:47 2010 +0200
+++ b/gamelib/scenes/bridge.py	Sun Aug 29 11:13:51 2010 +0200
@@ -112,10 +112,10 @@
     def interact_without(self):
         return Result(detail_view='bridge_comp_detail')
 
-    def interact_with_titanium_leg(self):
+    def interact_with_titanium_leg(self, item):
         return Result("You can't break the duraplastic screen.")
 
-    def interact_with_machete(self):
+    def interact_with_machete(self, item):
         return Result("Scratching the screen won't help you.")
 
     def get_description(self):