Fix Viggen FR22 group channel id and mention in changelog

This commit is contained in:
RndName 2021-12-30 18:47:22 +01:00
parent abeebe9c8b
commit deb7227ce9
No known key found for this signature in database
GPG Key ID: 5EF516FD9537F7C0
2 changed files with 5 additions and 4 deletions

View File

@ -15,9 +15,10 @@ Saves from 5.x are not compatible with 6.0.
## Fixes
* **[Campaign]** Fixed some minor issues in campaigns which generated error messages in the log.
* **[Mission Generator]** Fixed incorrect radio specification for the AN/ARC-222.
* **[Mission Generator]** Fixed mission scripting error when using a dedicated server.
* **[Mission Generator]** Fixed an issue where empty convoys lead to an index error when a point capture made a pending transfer of units not completable anymore.
* **[Mission Generation]** Fixed incorrect radio specification for the AN/ARC-222.
* **[Mission Generation]** Fixed mission scripting error when using a dedicated server.
* **[Mission Generation]** Fixed an issue where empty convoys lead to an index error when a point capture made a pending transfer of units not completable anymore.
* **[Mission Generation]** Corrected Viggen FR22 & FR24 preset channels for the DCS 2.7.9 update
* **[UI]** Enable / Disable the settings, save and stats actions if no game is loaded to prevent an error as these functions can only be used on a valid game.
# 5.0.0

View File

@ -287,7 +287,7 @@ class ViggenChannelNamer(ChannelNamer):
]
if channel_id >= 41: # Special channels are 41-47
return special_channels[channel_id - 41]
return f"FR 22 Group 10{channel_id-1}"
return f"FR 22 Group {99 + channel_id}"
@classmethod
def name(cls) -> str: