Very much done
This commit is contained in:
@@ -2,7 +2,7 @@ from Target import Target
|
||||
|
||||
class LeftInlaneTarget(Target):
|
||||
def __init__(self):
|
||||
super().__init__(100, 'Left Inlane')
|
||||
super().__init__(3000, 'Left Inlane')
|
||||
|
||||
def hit(self):
|
||||
super().hit()
|
||||
@@ -2,7 +2,7 @@ from Target import Target
|
||||
|
||||
class LeftOutlaneTarget(Target):
|
||||
def __init__(self):
|
||||
super().__init__(100, 'Left Outlane')
|
||||
super().__init__(100000, 'Left Outlane')
|
||||
|
||||
def hit(self):
|
||||
super().hit()
|
||||
@@ -3,7 +3,7 @@ from Target import Target
|
||||
|
||||
class RightInlaneTarget(Target):
|
||||
def __init__(self):
|
||||
super().__init__(100, 'Right Inlane')
|
||||
super().__init__(30000, 'Right Inlane')
|
||||
|
||||
def hit(self):
|
||||
super().hit()
|
||||
Reference in New Issue
Block a user