Start logic

This commit is contained in:
Jonas Zeunert
2022-06-06 21:50:40 +02:00
parent f376038c83
commit e9faf5b4a3
2 changed files with 12 additions and 4 deletions

View File

@@ -13,6 +13,10 @@ class GameState:
self.specialDisplay.printCredits(self.credits)
PLAYER_LAMPS.activateNext()
def nextPlayer(self):
nextPlayer = self.players[1].id
self.currentPlayer = nextPlayer
@property
def currentPlayer(self):
return self.players[0]