Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zhexu14 committed Oct 5, 2024
1 parent eefff9d commit 37546d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion game/missiongenerator/aircraft/flightgroupconfigurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,4 +282,7 @@ def set_callsigns(self) -> None:
unit_callsign.name is None
): # pydcs needs unit.callsign to be set for eastern callsigns
unit.callsign = str(unit_callsign) # type: ignore
unit.callsign_dict = unit_callsign.pydcs_dict(country=self.flight.country)
else: # Use western callsign
unit.callsign_dict = unit_callsign.pydcs_dict(
country=self.flight.country
)

0 comments on commit 37546d4

Please sign in to comment.