changeset 201:6a4457b912a5

Mission debugging
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 17:53:57 +0200
parents 553e68128e1c
children eb506f431979
files gamelib/missions.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/missions.py	Sat May 12 17:53:51 2012 +0200
+++ b/gamelib/missions.py	Sat May 12 17:53:57 2012 +0200
@@ -961,7 +961,7 @@
 
     def attempt_with(self, categorised, state):
 
-        if cat.DOOMSDAY_MACHINE in categorised:
+        if cat.DOOMSDAY_DEVICE in categorised:
             return self.fail(
                 "While destroying the area is certainly within your"
                 " capabilities, and would cause wide-spread panic,"
@@ -981,7 +981,7 @@
             self.use_equipment(
                     {cat.AI: categorised[cat.AI]})
             return self.succeed(
-                "You easily survert the local exchanges computer systems."
+                "You easily survert the local exchange's computer systems."
                 " It hardly seems fair to profit off such a trivial challenge"
                 " but there are always bills to pay",
                 money=randint(5000, 10000), rep=randint(2, 5))
@@ -991,7 +991,7 @@
                     {cat.BEAST: categorised[cat.BEAST]})
             return self.succeed(
                 "Releasing the monster into the exchange certainly created"
-                " a stir, and the was much running and screaming, but, with"
+                " a stir, and there was much running and screaming, but, with"
                 " the exchange closing it's doors until the creature was"
                 " contained, there wasn't much opportunity to make a profit.",
                 money=0, rep=randint(2, 5))