changeset 429:860cb6144fd4

Spellin
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Sat, 28 Aug 2010 23:35:17 +0200
parents 3dc589bb78e4
children 4eaf3714469e
files gamelib/scenes/bridge.py gamelib/scenes/won.py
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/scenes/bridge.py	Sat Aug 28 23:31:09 2010 +0200
+++ b/gamelib/scenes/bridge.py	Sat Aug 28 23:35:17 2010 +0200
@@ -447,14 +447,14 @@
 
     def interact_without(self):
         if self.state.scenes['bridge'].get_data('ai status') == 'online':
-            return make_jim_dialog("You are not authorized to change the destination", self.state)
+            return make_jim_dialog("You are not authorized to change the destination.", self.state)
         if not self.ai_blocked:
-            return Result("There's no good reason to choose to go to the penal colony")
+            return Result("There's no good reason to choose to go to the penal colony.")
         if self.state.scenes['bridge'].get_data('ai status') == 'looping':
-            return Result("You could change the destination, but when JIM recovers, it'll just get reset")
+            return Result("You could change the destination, but when JIM recovers, it'll just get reset.")
         if self.state.scenes['bridge'].get_data('ai status') == 'dead':
             self.state.set_current_scene('won')
-            return Result("You change the destination", soundfile="beep550.png", close_detail=True)
+            return Result("You change the destination.", soundfile="beep550.png", close_detail=True)
 
 class CompUpButton(Thing):
     """Up button on log screen"""
--- a/gamelib/scenes/won.py	Sat Aug 28 23:31:09 2010 +0200
+++ b/gamelib/scenes/won.py	Sat Aug 28 23:35:17 2010 +0200
@@ -23,6 +23,6 @@
     def enter(self):
         return Result("Congratulations, Prisoner %s. You head off to your chosen "
                 "destination, safe in the knowledge that nothing can stop you. "
-                "Now you just need to do something during the intervening months" % PLAYER_ID)
+                "Now you just need to find something to do during the intervening months." % PLAYER_ID)
 
 SCENES = [Won]