diff --git a/GameState.py b/GameState.py index 09daecf..94bf7e7 100644 --- a/GameState.py +++ b/GameState.py @@ -1,8 +1,10 @@ import logging from lamps.LampGroup import PLAYER_LAMPS +from lamps.Lamp import CREDIT class GameState: def __init__(self, players, highscore, specialDisplay, currentPlayerID = 0): + CREDIT.activate() self.players = players self.gameStateID = currentPlayerID self.highscore = highscore diff --git a/lamps/Lamp.py b/lamps/Lamp.py index a5f31a2..b8dfc0a 100644 --- a/lamps/Lamp.py +++ b/lamps/Lamp.py @@ -13,3 +13,4 @@ class Lamp: def isActivated(self): networking.getLamps(self) +CREDIT = Lamp('Credit') \ No newline at end of file