diff gamelib/scenes/engine.py @ 462:eebd6e08cbc9

Mac icons hooked up, chops added and engine fix message fixed.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 29 Aug 2010 01:23:08 +0200
parents fdf3a6dd476b
children af2a23b9787d
line wrap: on
line diff
--- a/gamelib/scenes/engine.py	Sun Aug 29 01:23:03 2010 +0200
+++ b/gamelib/scenes/engine.py	Sun Aug 29 01:23:08 2010 +0200
@@ -3,6 +3,7 @@
 from albow.resource import get_image
 from gamelib.cursor import CursorSprite
 from gamelib.state import Scene, Item, Thing, Result
+from gamelib.scenes.game_constants import PLAYER_ID
 from gamelib.scenes.scene_widgets import (Door, InteractText, InteractNoImage,
                                           InteractRectUnion, InteractImage,
                                           InteractAnimated, GenericDescThing,
@@ -130,8 +131,8 @@
                 and  self.things['engine.superconductor'].get_data('working'):
             self.set_data('engine online', True)
             self.add_thing(Engines())
-            return make_jim_dialog("The engines are now operational. "
-                                   "You have done a satisfactory job.",
+            return make_jim_dialog("The engines are now operational. You have"
+                                   "done a satisfactory job, Prisoner %s." % PLAYER_ID,
                                    self.state)
 
     def enter(self):