This commit is contained in:
Jonas Zeunert
2022-05-07 14:15:31 +02:00
parent 40ca25188c
commit c1aedcf424

View File

@@ -6,5 +6,5 @@ class PlayerStateFactory:
def __init__(self, specialDisplay):
self.specialDisplay = specialDisplay
def createPlayerState(self, display, id):
return PlayerState(display, self.specialDisplay, id, BALLS_PER_GAME)
def createPlayerState(self, display, id, banks):
return PlayerState(display, self.specialDisplay, id, BALLS_PER_GAME, banks)