comparison gamelib/scenes/won.py @ 434:9bcb6148fc6b

Remove won screen wall of text
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 28 Aug 2010 23:48:21 +0200
parents 860cb6144fd4
children
comparison
equal deleted inserted replaced
433:6b7b08d67233 434:9bcb6148fc6b
18 } 18 }
19 19
20 def __init__(self, state): 20 def __init__(self, state):
21 super(Won, self).__init__(state) 21 super(Won, self).__init__(state)
22 22
23 def enter(self):
24 return Result("Congratulations, Prisoner %s. You head off to your chosen "
25 "destination, safe in the knowledge that nothing can stop you. "
26 "Now you just need to find something to do during the intervening months." % PLAYER_ID)
27 23
28 SCENES = [Won] 24 SCENES = [Won]