diff gamelib/scenes/engine.py @ 435:19aff54b2e73

Many small fixes.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 28 Aug 2010 23:48:50 +0200
parents 3dc589bb78e4
children 6e1ad25a7db5
line wrap: on
line diff
--- a/gamelib/scenes/engine.py	Sat Aug 28 23:48:21 2010 +0200
+++ b/gamelib/scenes/engine.py	Sat Aug 28 23:48:50 2010 +0200
@@ -36,7 +36,7 @@
         self.add_thing(CrackedPipe())
         self.add_thing(ToMap())
         self.add_thing(GenericDescThing('engine.body', 1,
-            "Dead. I think those cans were past their sell-by date.",
+            "Dead. Those cans must have been past their sell-by date.",
             (
                 (594, 387, 45, 109),
                 (549, 479, 60, 55),
@@ -288,7 +288,7 @@
 
     def interact_with_full_detergent_bottle(self, item):
         if not self.scene.things['engine.cracked_pipe'].get_data('fixed'):
-            return Result("You think pouring the precious cryo fluid into a"
+            return Result("Pouring the precious cryo fluid into a"
                     " container connected to a cracked pipe would be a waste.")
         self.state.remove_inventory_item(item.name)
         self.scene.things['engine.cryo_containers'].set_data('filled', True)