diff gamelib/scenes/bridge.py @ 429:860cb6144fd4

Spellin
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Sat, 28 Aug 2010 23:35:17 +0200
parents 201ffb539464
children 19aff54b2e73
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"""