playerstate to prop

This commit is contained in:
Jonas Zeunert
2022-05-07 14:07:55 +02:00
parent 83cb1c26b4
commit e03d0e7aa5
20 changed files with 43 additions and 40 deletions

View File

@@ -7,13 +7,13 @@ class SpecialEvent(Event):
self.playerState = playerState
def replay(self):
self.playerState().setReplayBall()
self.playerState.setReplayBall()
def extra_ball(self):
self.playerState().addBall()
self.playerState.addBall()
def points(self):
self.playerState().addPoints(self.points)
self.playerState.addPoints(self.points)
def super_bonus(self):
pass