Random dunno

This commit is contained in:
Jonas Zeunert
2022-06-02 21:22:03 +02:00
parent 65873496f6
commit 3d2008dc4d
21 changed files with 72 additions and 72 deletions

View File

@@ -3,11 +3,11 @@ from solenoids.BottomLeftBankSolenoid import BottomLeftBankSolenoid
class BottomLeftBankEvent(BankEvent):
def __init__(self, playerState):
super().__init__(BottomLeftBankSolenoid(), "Bottom Left Bank Event", playerState)
def __init__(self, gameState):
super().__init__(BottomLeftBankSolenoid(), "Bottom Left Bank Event", gameState)
def trigger(self, target):
super().trigger(target)
playerState = self.playerState
playerState = self.gameState.playerState
playerState.advanceLeftOrangeSpecial()
playerState.advanceUpperPlayfieldTime()