# HG changeset patch # User Stefano Rivera # Date 1283073231 -7200 # Node ID 4060e2dd475741a87a1f5995cb4b64f934c25eb9 # Parent 3032cfe783cf3caf5e4cbad97f8f3aba75fb0f6d Add missing item parameter to bridge interact_with_foos diff -r 3032cfe783cf -r 4060e2dd4757 gamelib/scenes/bridge.py --- 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):