# HG changeset patch # User Neil Muller # Date 1283000515 -7200 # Node ID 782ff7e53928bfc6a14dda105abb07ca0215d96e # Parent 93e52ee01b067c7cf32aacd7f2c14fcf9a6f0674 Make airlock warning not JIM's diff -r 93e52ee01b06 -r 782ff7e53928 gamelib/scenes/map.py --- a/gamelib/scenes/map.py Sat Aug 28 14:51:58 2010 +0200 +++ b/gamelib/scenes/map.py Sat Aug 28 15:01:55 2010 +0200 @@ -132,9 +132,9 @@ def interact_without(self): if not self.state.is_in_inventory('helmet'): - return Result("JIM says 'The engine room is in vacumn. I cannot" - " open the airlock unless you have some suitable" - " protective gear", style="JIM") + return Result('The airlock refuses to open. The automated' + ' voice says "Hull breach beyond this door. Personnel' + ' must be equipped for vacuum before entry"') else: return super(ToEngine, self).interact_without()