Calling the constructor of MissionGenerator in PretenseMissionGenerator in unnecessary, so leaving it out.

This commit is contained in:
MetalStormGhost 2023-09-16 20:14:50 +03:00
parent 0b8fa9099c
commit ae13a422c3

View File

@ -55,11 +55,6 @@ if TYPE_CHECKING:
class PretenseMissionGenerator(MissionGenerator):
def __init__(self, game: Game, time: datetime) -> None:
super().__init__(
game,
time,
)
self.game = game
self.time = time
self.mission = Mission(game.theater.terrain)