diff --git a/Bank.py b/Bank.py index a15cf9c..d5a1f1c 100644 --- a/Bank.py +++ b/Bank.py @@ -12,7 +12,7 @@ class Bank(Target): def __all_targets_hit__(self): self.__reset_all_targets__() - super.hit() + super().hit()() pass def __reset_all_targets__(self): diff --git a/BankTarget.py b/BankTarget.py index 4d5d3ae..776efbf 100644 --- a/BankTarget.py +++ b/BankTarget.py @@ -7,7 +7,7 @@ class BankTarget(Target): def hit(self): self.is_hit = True - super.hit() + super().hit()() #notify Bank def reset(self): diff --git a/targets/ReboundContactTarget.py b/targets/ReboundContactTarget.py index 288fb47..c0effca 100644 --- a/targets/ReboundContactTarget.py +++ b/targets/ReboundContactTarget.py @@ -5,4 +5,4 @@ class ReboundContactTarget(Target): super().__init__(100, 'Rebound Contact') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/bottom_lanes/LeftInlaneTarget.py b/targets/bottom_lanes/LeftInlaneTarget.py index b5174de..f2df8fb 100644 --- a/targets/bottom_lanes/LeftInlaneTarget.py +++ b/targets/bottom_lanes/LeftInlaneTarget.py @@ -5,4 +5,4 @@ class LeftInlaneTarget(Target): super().__init__(100, 'Left Inlane') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/bottom_lanes/LeftOutlaneTarget.py b/targets/bottom_lanes/LeftOutlaneTarget.py index 498f990..44aaa03 100644 --- a/targets/bottom_lanes/LeftOutlaneTarget.py +++ b/targets/bottom_lanes/LeftOutlaneTarget.py @@ -5,4 +5,4 @@ class LeftOutlaneTarget(Target): super().__init__(100, 'Left Outlane') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/bottom_lanes/RightInlaneTarget.py b/targets/bottom_lanes/RightInlaneTarget.py index 7664b4e..9beb2c2 100644 --- a/targets/bottom_lanes/RightInlaneTarget.py +++ b/targets/bottom_lanes/RightInlaneTarget.py @@ -6,4 +6,4 @@ class RightInlaneTarget(Target): super().__init__(100, 'Right Inlane') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/bottom_lanes/RightOutlaneKickerTarget.py b/targets/bottom_lanes/RightOutlaneKickerTarget.py index a15aa84..faababa 100644 --- a/targets/bottom_lanes/RightOutlaneKickerTarget.py +++ b/targets/bottom_lanes/RightOutlaneKickerTarget.py @@ -7,4 +7,4 @@ class RightOutlaneKickerTarget(Target): #Scores 30000, 50000 when lit and advances 1-2-3-4-5 sequence def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/bottom_lanes/RightOutlaneTarget.py b/targets/bottom_lanes/RightOutlaneTarget.py index 6e90df0..10ad31a 100644 --- a/targets/bottom_lanes/RightOutlaneTarget.py +++ b/targets/bottom_lanes/RightOutlaneTarget.py @@ -6,4 +6,4 @@ class RightOutlaneTarget(Target): super().__init__(50000, "Right Outlane") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/canal/CanalButtonBottomTarget.py b/targets/canal/CanalButtonBottomTarget.py index 094f963..73e9a5e 100644 --- a/targets/canal/CanalButtonBottomTarget.py +++ b/targets/canal/CanalButtonBottomTarget.py @@ -6,4 +6,4 @@ class CanalButtonTopTarget(Target): super().__init__(20000, "Canal Button Bottom") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/canal/CanalButtonMiddleBottomTarget.py b/targets/canal/CanalButtonMiddleBottomTarget.py index b6a44ec..638f05d 100644 --- a/targets/canal/CanalButtonMiddleBottomTarget.py +++ b/targets/canal/CanalButtonMiddleBottomTarget.py @@ -6,4 +6,4 @@ class LeftLaneButton4Target(Target): super().__init__(20000, "Canal Button Middle Bottom") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/canal/CanalButtonMiddleTarget.py b/targets/canal/CanalButtonMiddleTarget.py index 3f35502..799f95b 100644 --- a/targets/canal/CanalButtonMiddleTarget.py +++ b/targets/canal/CanalButtonMiddleTarget.py @@ -6,4 +6,4 @@ class LeftLaneButton3Target(Target): super().__init__(20000, "Canal Button Middle") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/canal/CanalButtonMiddleTopTarget.py b/targets/canal/CanalButtonMiddleTopTarget.py index 114917a..c6d934e 100644 --- a/targets/canal/CanalButtonMiddleTopTarget.py +++ b/targets/canal/CanalButtonMiddleTopTarget.py @@ -6,4 +6,4 @@ class LeftLaneButton2Target(Target): super().__init__(20000, "Canal Button Middle Top") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/canal/CanalButtonTopTarget.py b/targets/canal/CanalButtonTopTarget.py index 03234ca..4783e7c 100644 --- a/targets/canal/CanalButtonTopTarget.py +++ b/targets/canal/CanalButtonTopTarget.py @@ -5,4 +5,4 @@ class LeftLaneButton1Target(Target): super().__init__(100, 'Left Lane Button #1') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget1.py b/targets/fixed_targets/FixedTarget1.py index 080407e..503af11 100644 --- a/targets/fixed_targets/FixedTarget1.py +++ b/targets/fixed_targets/FixedTarget1.py @@ -6,4 +6,4 @@ class FixedTarget1(Target): super().__init__(0, "Fixed Target 1") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget2.py b/targets/fixed_targets/FixedTarget2.py index 2000de7..b872ec9 100644 --- a/targets/fixed_targets/FixedTarget2.py +++ b/targets/fixed_targets/FixedTarget2.py @@ -6,4 +6,4 @@ class FixedTarget2(Target): super().__init__(0, "Fixed Target 2") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget3.py b/targets/fixed_targets/FixedTarget3.py index 0891ad7..79bf2fa 100644 --- a/targets/fixed_targets/FixedTarget3.py +++ b/targets/fixed_targets/FixedTarget3.py @@ -5,4 +5,4 @@ class FixedTarget3(Target): super().__init__(100, 'Fixed Target 3') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget4.py b/targets/fixed_targets/FixedTarget4.py index dd77817..27f1044 100644 --- a/targets/fixed_targets/FixedTarget4.py +++ b/targets/fixed_targets/FixedTarget4.py @@ -6,4 +6,4 @@ class FixedTarget4(Target): super().__init__(100, 'Fixed Target 4') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/fixed_targets/FixedTarget5.py b/targets/fixed_targets/FixedTarget5.py index 38cc30b..e01f49b 100644 --- a/targets/fixed_targets/FixedTarget5.py +++ b/targets/fixed_targets/FixedTarget5.py @@ -6,4 +6,4 @@ class FixedTarget5(Target): super().__init__(100, 'Fixed Target 5') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/left_bank/LeftBank.py b/targets/left_bank/LeftBank.py index b523af2..505118e 100644 --- a/targets/left_bank/LeftBank.py +++ b/targets/left_bank/LeftBank.py @@ -11,4 +11,4 @@ class LeftBank(Bank): def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/left_bank/LeftBankLeftTarget.py b/targets/left_bank/LeftBankLeftTarget.py index 37606c8..e3208c4 100644 --- a/targets/left_bank/LeftBankLeftTarget.py +++ b/targets/left_bank/LeftBankLeftTarget.py @@ -6,4 +6,4 @@ class LeftBankLeftTarget(BankTarget): super().__init__(100, 'Left Bank Left') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/left_bank/LeftBankMiddleLeftTarget.py b/targets/left_bank/LeftBankMiddleLeftTarget.py index 2ef05c5..d568dfa 100644 --- a/targets/left_bank/LeftBankMiddleLeftTarget.py +++ b/targets/left_bank/LeftBankMiddleLeftTarget.py @@ -6,4 +6,4 @@ class LeftBankMiddleLeftTarget(BankTarget): super().__init__(100, 'Left Bank Middle Left') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/left_bank/LeftBankMiddleRightTarget.py b/targets/left_bank/LeftBankMiddleRightTarget.py index 52dd1b8..e82559c 100644 --- a/targets/left_bank/LeftBankMiddleRightTarget.py +++ b/targets/left_bank/LeftBankMiddleRightTarget.py @@ -6,4 +6,4 @@ class LeftBankMiddleRightTarget(BankTarget): super().__init__(100, 'Left Bank Middle Right') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/left_bank/LeftBankRightTarget.py b/targets/left_bank/LeftBankRightTarget.py index b8def26..4ba793e 100644 --- a/targets/left_bank/LeftBankRightTarget.py +++ b/targets/left_bank/LeftBankRightTarget.py @@ -6,4 +6,4 @@ class LeftBankRightTarget(Target): super().__init__(100, 'Left Bank Right') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/pop_bumpers/LeftPopTarget.py b/targets/pop_bumpers/LeftPopTarget.py index 397838b..9db8703 100644 --- a/targets/pop_bumpers/LeftPopTarget.py +++ b/targets/pop_bumpers/LeftPopTarget.py @@ -6,4 +6,4 @@ class LeftPopTarget(Target): super().__init__(0, "Left Pop") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/pop_bumpers/RightPopTarget.py b/targets/pop_bumpers/RightPopTarget.py index 9444709..adf3d47 100644 --- a/targets/pop_bumpers/RightPopTarget.py +++ b/targets/pop_bumpers/RightPopTarget.py @@ -6,4 +6,4 @@ class RightPopTarget(Target): super().__init__(100, 'Right Pop') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/right_bank/RightBank.py b/targets/right_bank/RightBank.py index a9c7623..1010bd1 100644 --- a/targets/right_bank/RightBank.py +++ b/targets/right_bank/RightBank.py @@ -9,4 +9,4 @@ class RightBank(Bank): super().__init__(0, "Right Bank", targets) def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/right_bank/RightBankLeftTarget.py b/targets/right_bank/RightBankLeftTarget.py index bd6d5fd..b422f51 100644 --- a/targets/right_bank/RightBankLeftTarget.py +++ b/targets/right_bank/RightBankLeftTarget.py @@ -6,4 +6,4 @@ class RightBankLeftTarget(BankTarget): super().__init__(100, "Right Bank Left") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/right_bank/RightBankMiddleTarget.py b/targets/right_bank/RightBankMiddleTarget.py index 38563bf..f25317a 100644 --- a/targets/right_bank/RightBankMiddleTarget.py +++ b/targets/right_bank/RightBankMiddleTarget.py @@ -6,4 +6,4 @@ class RightBankMiddleTarget(BankTarget): super().__init__(100, 'Right Bank Middle') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/right_bank/RightBankRightTarget.py b/targets/right_bank/RightBankRightTarget.py index 0d94553..2598b14 100644 --- a/targets/right_bank/RightBankRightTarget.py +++ b/targets/right_bank/RightBankRightTarget.py @@ -6,4 +6,4 @@ class RightBankRightTarget(BankTarget): super().__init__(100, "Right Bank Right") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/slingshots/LeftSlingshotTarget.py b/targets/slingshots/LeftSlingshotTarget.py index df85aca..c950c32 100644 --- a/targets/slingshots/LeftSlingshotTarget.py +++ b/targets/slingshots/LeftSlingshotTarget.py @@ -5,4 +5,4 @@ class LeftSlingshotTarget(Target): super().__init__(100, 'Left Slingshot') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/slingshots/RightSlingshotTarget.py b/targets/slingshots/RightSlingshotTarget.py index 1774e19..19b783a 100644 --- a/targets/slingshots/RightSlingshotTarget.py +++ b/targets/slingshots/RightSlingshotTarget.py @@ -6,4 +6,4 @@ class RightSlingshotTarget(Target): super().__init__(10, "Right Slingshot") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/specials/SpecialOrangeTarget.py b/targets/specials/SpecialOrangeTarget.py index b8ea156..53140fd 100644 --- a/targets/specials/SpecialOrangeTarget.py +++ b/targets/specials/SpecialOrangeTarget.py @@ -9,4 +9,4 @@ class FixedSpecialOrangeTarget(Target): super().__init__(100000, "Special Orange") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/specials/SpecialRedTarget.py b/targets/specials/SpecialRedTarget.py index e43472b..e951a26 100644 --- a/targets/specials/SpecialRedTarget.py +++ b/targets/specials/SpecialRedTarget.py @@ -8,4 +8,4 @@ class FixedSpecialRedTarget(Target): super().__init__(10000, "Special Red") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/specials/SpinnerTarget.py b/targets/specials/SpinnerTarget.py index 150b153..f6d1191 100644 --- a/targets/specials/SpinnerTarget.py +++ b/targets/specials/SpinnerTarget.py @@ -5,4 +5,4 @@ class SpinnerTarget(Target): super().__init__(100, 'Spinner') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/technical/CreditTarget.py b/targets/technical/CreditTarget.py index 66612e9..5bf7604 100644 --- a/targets/technical/CreditTarget.py +++ b/targets/technical/CreditTarget.py @@ -6,4 +6,4 @@ class CreditTarget(Target): super().__init__(0, 'Credit') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/technical/OutholeTarget.py b/targets/technical/OutholeTarget.py index d84c961..e130b54 100644 --- a/targets/technical/OutholeTarget.py +++ b/targets/technical/OutholeTarget.py @@ -5,4 +5,4 @@ class OutholeTarget(Target): super().__init__(100, 'Outhole') def hit(self): - super.hit() + super().hit()() diff --git a/targets/technical/RisingBall.py b/targets/technical/RisingBall.py index a670768..e7b0dae 100644 --- a/targets/technical/RisingBall.py +++ b/targets/technical/RisingBall.py @@ -6,4 +6,4 @@ class RisingBall(Target): super().__init__(0, "Rising Ball") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/top_bank/TopBank.py b/targets/top_bank/TopBank.py index e9a1c1e..fb4e796 100644 --- a/targets/top_bank/TopBank.py +++ b/targets/top_bank/TopBank.py @@ -12,4 +12,4 @@ class TopBank(Bank): super().__init__(0, "Top Bank", targets) def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/top_bank/TopBankLeftTarget.py b/targets/top_bank/TopBankLeftTarget.py index 51c2c4a..3e5c42d 100644 --- a/targets/top_bank/TopBankLeftTarget.py +++ b/targets/top_bank/TopBankLeftTarget.py @@ -6,4 +6,4 @@ class TopBankLeftTarget(BankTarget): super().__init__(100, 'Top Bank Left') def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/top_bank/TopBankMiddleLeftTarget.py b/targets/top_bank/TopBankMiddleLeftTarget.py index 033122d..28e8b43 100644 --- a/targets/top_bank/TopBankMiddleLeftTarget.py +++ b/targets/top_bank/TopBankMiddleLeftTarget.py @@ -6,4 +6,4 @@ class TopBankMiddleLeftTarget(BankTarget): super().__init__(100, "Top Bank Middle Left") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/top_bank/TopBankMiddleRightTarget.py b/targets/top_bank/TopBankMiddleRightTarget.py index 54db424..46e2ae0 100644 --- a/targets/top_bank/TopBankMiddleRightTarget.py +++ b/targets/top_bank/TopBankMiddleRightTarget.py @@ -5,4 +5,4 @@ class TopBankMiddleRightTarget(BankTarget): super().__init__(100, "Top Bank Middle Right") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/top_bank/TopBankMiddleTarget.py b/targets/top_bank/TopBankMiddleTarget.py index 2d02852..dcdd8ff 100644 --- a/targets/top_bank/TopBankMiddleTarget.py +++ b/targets/top_bank/TopBankMiddleTarget.py @@ -6,4 +6,4 @@ class TopBankMiddleTarget(BankTarget): super().__init__(100, "Top Bank Middle") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file diff --git a/targets/top_bank/TopBankRightTarget.py b/targets/top_bank/TopBankRightTarget.py index 8738ceb..5d3cf6b 100644 --- a/targets/top_bank/TopBankRightTarget.py +++ b/targets/top_bank/TopBankRightTarget.py @@ -6,4 +6,4 @@ class TopBankRightTarget(BankTarget): super().__init__(100000, "Top Bank Right") def hit(self): - super.hit() \ No newline at end of file + super().hit()() \ No newline at end of file