Merge branch 'master' of gitlab.rhetenor.de:rhetenor/flippr-game

This commit is contained in:
andi
2020-01-23 22:28:47 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ from Target import Target
# points. Scores 10,000 points when not lit. # points. Scores 10,000 points when not lit.
class FixedSpecialRedTarget(Target): class FixedSpecialRedTarget(Target):
def __init__(self): def __init__(self):
super() super(10000, "Fixed Special Red")
def hit(self): def hit(self):
super.hit() super.hit()

View File

@@ -3,7 +3,7 @@ from Target import Target
class UPRightDropTarget(Target): class UPRightDropTarget(Target):
def __init__(self): def __init__(self):
super() super(100000, "Upper Playfield Right Drop Target")
def hit(self): def hit(self):
super.hit() super.hit()