changeset 179:71db080a1fbf

More debugging
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 11:46:08 +0200
parents 52cc28b429b7
children 8868ac7ece8b
files gamelib/missions.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/missions.py	Sat May 12 11:42:43 2012 +0200
+++ b/gamelib/missions.py	Sat May 12 11:46:08 2012 +0200
@@ -460,7 +460,7 @@
 
 class ShowThemAll(Mission):
 
-    NAME = "And they called me mad."
+    NAME = "And they called me mad!"
     SHORT_DESCRIPTION = "Time for revenge."
     LONG_DESCRIPTION = (
         "You've outgrown the chains of convention your teachers tried"
@@ -491,13 +491,13 @@
                 rep=randint(10, 15))
 
         if cat.BEAST in categorised:
-            if all(cat.AQUATIC not in x.CATEGORIES for x in
+            if all(cat.AQUATIC in x.CATEGORIES for x in
                     categorised[cat.BEAST]):
                 self.fail(
                     "While the beast is terrifying, the effect is"
                     " unfortuantely significantly lessened the need for a "
                     " large water tank, and the it's inability to move "
-                    " independantly. Prehaps you need to rethink your plan?")
+                    " independantly. Perhaps you need to rethink your plan?")
             else:
                 self.data['completed'] = True
                 self.succeed(
@@ -552,7 +552,7 @@
         if cat.HAND_WEAPON in categorised:
             self.fail(
                 "The news station's security is surprisingly well prepared."
-                " Prehaps you should rethink your approach?",
+                " Perhaps you should rethink your approach?",
                 rep=-randint(5, 10))