From d15ef63182ed99cf570670d6b2c34165744228a8 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sun, 23 May 2021 17:12:22 -0700 Subject: [PATCH] Remove unused method of ControlPoint. --- game/theater/controlpoint.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/game/theater/controlpoint.py b/game/theater/controlpoint.py index ad9f4ec1..ef4eed07 100644 --- a/game/theater/controlpoint.py +++ b/game/theater/controlpoint.py @@ -442,11 +442,6 @@ class ControlPoint(MissionTarget, ABC): """ ... - # TODO: Should be Airbase specific. - def connect(self, to: ControlPoint) -> None: - self.connected_points.append(to) - self.stances[to.id] = CombatStance.DEFENSIVE - def convoy_origin_for(self, destination: ControlPoint) -> Point: return self.convoy_route_to(destination)[0]