This commit is contained in:
Jonas Zeunert
2022-09-01 00:24:14 +02:00
parent ffdd522c7b
commit fb2b7c3718
3 changed files with 7 additions and 3 deletions

View File

@@ -19,6 +19,12 @@ class EndBallEvent(Event):
super().__init__("End Of Ball Event")
def trigger(self, target):
if not self.gameState.isPlaying:
return
if not self.gameState.isStarted:
return
super().trigger(target)
TopFlipper().deactivate()