comparison gamelib/missions.py @ 264:7a6396ea2cc6

Fix method name typo
author Neil Muller <drnlmuller@gmail.com>
date Sun, 27 May 2012 11:36:26 +0200
parents 594c45f0f685
children
comparison
equal deleted inserted replaced
263:d29bb7934527 264:7a6396ea2cc6
1074 self.fail( 1074 self.fail(
1075 "If there's no-one left alive, there'll be no-one to" 1075 "If there's no-one left alive, there'll be no-one to"
1076 " report on your genius. Prehaps less overkill is more" 1076 " report on your genius. Prehaps less overkill is more"
1077 " suited to the task at hand") 1077 " suited to the task at hand")
1078 if cat.BEAST in categorised: 1078 if cat.BEAST in categorised:
1079 self.use_equipment_catefory(categorised, cat.BEAST) 1079 self.use_equipment_category(categorised, cat.BEAST)
1080 if any(cat.AQUATIC in x.CATEGORIES for x in 1080 if any(cat.AQUATIC in x.CATEGORIES for x in
1081 categorised[cat.BEAST]): 1081 categorised[cat.BEAST]):
1082 self.succeed( 1082 self.succeed(
1083 "You release the beast into the city sewer system." 1083 "You release the beast into the city sewer system."
1084 " The resulting destruction is both expensive to" 1084 " The resulting destruction is both expensive to"
1090 " takes out a local substation. It's not a stunning" 1090 " takes out a local substation. It's not a stunning"
1091 " victory, but it's enough to get you name in the" 1091 " victory, but it's enough to get you name in the"
1092 " news again", rep=randint(2, 5)) 1092 " news again", rep=randint(2, 5))
1093 1093
1094 if cat.VEHICLE in categorised: 1094 if cat.VEHICLE in categorised:
1095 self.use_equipment_catefory(categorised, cat.VEHICLE) 1095 self.use_equipment_category(categorised, cat.VEHICLE)
1096 self.succeed( 1096 self.succeed(
1097 "Your mobile platforms of destruction cause severe" 1097 "Your mobile platforms of destruction cause severe"
1098 " traffic chaos, and tie up the local traffic services" 1098 " traffic chaos, and tie up the local traffic services"
1099 " for hours. The resulting traffic jams headline the" 1099 " for hours. The resulting traffic jams headline the"
1100 " evening news. It's not quite the what you were going" 1100 " evening news. It's not quite the what you were going"