comparison gamelib/scenes/map.py @ 224:8d8aef45db4e

fixed some typos
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Thu, 26 Aug 2010 22:25:42 +0200
parents 2b820b4ba3bf
children b1451b0b906f
comparison
equal deleted inserted replaced
223:10d3265f0bfa 224:8d8aef45db4e
33 for door_thing in self.things.values(): 33 for door_thing in self.things.values():
34 door_thing.check_dest() 34 door_thing.check_dest()
35 if self.get_data('implant'): 35 if self.get_data('implant'):
36 self.set_data('implant', False) 36 self.set_data('implant', False)
37 return (Result( 37 return (Result(
38 "JIM say 'Under the terms of the emergency conscription " 38 "JIM says: 'Under the terms of the emergency conscription "
39 "act, I have downloaded the ship schematics to your " 39 "act, I have downloaded the ship's schematics to your "
40 "neural implant to help you navigate around the ship. " 40 "neural implant to help you navigate around the ship. "
41 "Please report to the bridge.'", style="JIM"), 41 "Please report to the bridge.'", style="JIM"),
42 Result( 42 Result(
43 "JIM continues 'Prisoner %s. You are classed " 43 "JIM continues: 'Prisoner %s. You are classed "
44 "as a class 1 felon. Obtaining access to the ship shematics " 44 "as a class 1 felon. Obtaining access to the ship's schematics "
45 "consitutes a level 2 offence and carries a minimal penalty " 45 "constitutes a level 2 offence and carries a minimal penalty "
46 "of an additional 3 years on you sentence.'" % PLAYER_ID, 46 "of an additional 3 years on your sentence.'" % PLAYER_ID,
47 style="JIM")) 47 style="JIM"))
48 48
49 49
50 class DoorThing(Thing): 50 class DoorThing(Thing):
51 51