This commit is contained in:
Jonas Zeunert
2022-06-02 21:28:44 +02:00
parent 3d2008dc4d
commit cfdcbcb5bd
17 changed files with 28 additions and 28 deletions

View File

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