diff pytouhou/game/player.pyx @ 614:2cf518129725

Delay power assignment to players until the game is started.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 28 Mar 2015 21:02:05 +0100
parents 3c2f96f1d715
children a6af3ff86612
line wrap: on
line diff
--- a/pytouhou/game/player.pyx
+++ b/pytouhou/game/player.pyx
@@ -24,8 +24,8 @@ from pytouhou.game import GameOver
 
 
 cdef class Player(Element):
-    def __init__(self, long number, anm, long character=0, long power=0,
-                 long continues=0, long lives=2, long bombs=3, long score=0):
+    def __init__(self, long number, anm, long character=0, long continues=0,
+                 long power=0, long lives=2, long bombs=3, long score=0):
         Element.__init__(self, (192, 384))
 
         self.number = number