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

@@ -37,7 +37,7 @@ class GameFactory:
def createPlayers(self):
players = []
for id in range(1, self.playerCount + 1):
for id in range(1, self.playerCount):
display = self.displayFactory.createPlayerDisplay(id)
player = self.playerStateFactory.createPlayerState(display, id)
players.append(player)