id mismatch

This commit is contained in:
Jonas Zeunert
2020-03-09 20:48:45 +01:00
parent 08f95c8d35
commit 5e0f1a60bc

View File

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