# HG changeset patch # User Neil Muller # Date 1283007369 -7200 # Node ID 9d97d2e338db4cbc15421ee1c35ae8a25aeb1c4c # Parent 452230d78541f2b265a29699a7a9bca4de2c7e9e JIM comments on cryo pipes diff -r 452230d78541 -r 9d97d2e338db gamelib/scenes/cryo.py --- a/gamelib/scenes/cryo.py Sat Aug 28 16:51:40 2010 +0200 +++ b/gamelib/scenes/cryo.py Sat Aug 28 16:56:09 2010 +0200 @@ -165,8 +165,15 @@ self.state.add_item(pipe) self.state.add_inventory_item(pipe.name) self.set_interact("chopped") - return Result("It takes more effort than one would expect, but " + result = Result("It takes more effort than one would expect, but " "eventually the pipe is separated from the wall.") + ai_result = make_jim_dialog("Prisoner %s. Vandalism is an offence " + "punishable by a minimum of an additional 6 months " + "to your sentence" % PLAYER_ID, self.state) + if ai_result: + return result, ai_result + return result + def is_interactive(self): return self.get_data('fixed')