bla
This commit is contained in:
@@ -15,6 +15,7 @@ class GameFactory:
|
||||
def __init__(self):
|
||||
displayNames = networking.getDisplays()['displays']
|
||||
self.displayFactory = DisplayFactory(displayNames)
|
||||
self.displays = self.displayFactory.createDisplays()
|
||||
self.specialDisplay = self.displayFactory.createSpecialDisplay()
|
||||
|
||||
self.playerCount = len(displayNames)
|
||||
@@ -22,7 +23,7 @@ class GameFactory:
|
||||
self.targets = TargetFactory.createAllTargets()
|
||||
banks = [self.targets['Left Bank'], self.targets['Right Bank'], self.targets['Top Bank']]
|
||||
|
||||
self.playerStateFactory = PlayerStateFactory(self.specialDisplay, banks, self.displayFactory)
|
||||
self.playerStateFactory = PlayerStateFactory(self.specialDisplay, banks, self.displays)
|
||||
|
||||
|
||||
def createGame(self):
|
||||
|
||||
Reference in New Issue
Block a user