comparison gamelib/scenes/bridge.py @ 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 cab67fd696b9
children c72946d3a59a
comparison
equal deleted inserted replaced
473:3032cfe783cf 474:4060e2dd4757
110 INITIAL = 'screen' 110 INITIAL = 'screen'
111 111
112 def interact_without(self): 112 def interact_without(self):
113 return Result(detail_view='bridge_comp_detail') 113 return Result(detail_view='bridge_comp_detail')
114 114
115 def interact_with_titanium_leg(self): 115 def interact_with_titanium_leg(self, item):
116 return Result("You can't break the duraplastic screen.") 116 return Result("You can't break the duraplastic screen.")
117 117
118 def interact_with_machete(self): 118 def interact_with_machete(self, item):
119 return Result("Scratching the screen won't help you.") 119 return Result("Scratching the screen won't help you.")
120 120
121 def get_description(self): 121 def get_description(self):
122 return "The main bridge computer screen." 122 return "The main bridge computer screen."
123 123