comparison gamelib/scenes/bridge.py @ 792:bdaffaa8b6bf pyntnclick

Loading and saving! (Plus a bunch of other stuff to make it possible.)
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 27 Jan 2013 12:43:28 +0200
parents b0bd36c2c840
children 374d96e0b55e
comparison
equal deleted inserted replaced
791:56ec01e51f3d 792:bdaffaa8b6bf
161 } 161 }
162 162
163 INITIAL = 'chair' 163 INITIAL = 'chair'
164 164
165 def get_description(self): 165 def get_description(self):
166 return self.game.current_scene.things['bridge.massagechair_base'] \ 166 base = self.game.get_current_scene().things['bridge.massagechair_base']
167 .get_description() 167 return base.get_description()
168 168
169 def is_interactive(self, tool=None): 169 def is_interactive(self, tool=None):
170 return False 170 return False
171 171
172 172