diff gamelib/scenes/mess.py @ 224:8d8aef45db4e

fixed some typos
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Thu, 26 Aug 2010 22:25:42 +0200
parents 10d3265f0bfa
children a5325919342e
line wrap: on
line diff
--- a/gamelib/scenes/mess.py	Thu Aug 26 22:10:01 2010 +0200
+++ b/gamelib/scenes/mess.py	Thu Aug 26 22:25:42 2010 +0200
@@ -28,7 +28,7 @@
     """Base class for the cans"""
 
     def interact_with_full_can(self, item, state):
-        return Result("You bang the cans togther. It sounds like two cans being banged togther.", soundfile="can_hit.ogg")
+        return Result("You bang the cans together. It sounds like two cans being banged together.", soundfile="can_hit.ogg")
 
     def interact_with_dented_can(self, item, state):
         return self.interact_with_full_can(item, state)
@@ -37,7 +37,7 @@
         return self.interact_with_full_can(item, state)
 
     def interact_with_machete(self, item, state):
-        return Result("You'd managle it beyond usefulness")
+        return Result("You'd mangle it beyond usefulness.")
 
 
 class EmptyCan(BaseCan):
@@ -114,15 +114,15 @@
             self.set_data('cans_available', starting_cans - 1)
             self.set_interact('%icans' % (starting_cans - 1))
             return Result({
-                    3: "Best before along time in the past. Better not eat these.",
-                    2: "Mmmm. Nutritious Bacteria Stew.",
-                    1: "Candied silkworms. Who stocked this place!?",
+                    3: "Best before a long time in the past. Better not eat these.",
+                    2: "Mmmm. Nutritious bacteria stew.",
+                    1: "Candied silkworms. Who stocked this place?!",
                     }[starting_cans])
         else:
             return Result("The rest of the cans are rusted beyond usefulness.")
 
     def get_description(self):
-        return "The contents of these cans looks synthetic."
+        return "The contents of these cans look synthetic."
 
 
 class Tubes(Thing):