Improved the typing of game.pretense_air

This commit is contained in:
MetalStormGhost
2023-09-19 18:20:55 +03:00
parent 47ee0e5340
commit 064d17aab0
4 changed files with 31 additions and 24 deletions

View File

@@ -151,7 +151,10 @@ class Game:
# Side, control point, mission type
self.pretense_ground_supply: dict[int, dict[str, List[str]]] = {1: {}, 2: {}}
self.pretense_ground_assault: dict[int, dict[str, List[str]]] = {1: {}, 2: {}}
self.pretense_air: dict[int, dict[str, dict[str, List[str]]]] = {1: {}, 2: {}}
self.pretense_air: dict[int, dict[str, dict[FlightType, List[str]]]] = {
1: {},
2: {},
}
self.on_load(game_still_initializing=True)