mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
parent
5d89b9ac25
commit
d7f833ecfb
@ -9,8 +9,9 @@ Saves from 5.0.0 are not compatible with 5.1.0
|
||||
|
||||
## Fixes
|
||||
|
||||
* **[Mission Generation]** Fixed mission scripting error when using a dedicated server.
|
||||
* **[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.
|
||||
|
||||
# 5.0.0
|
||||
|
||||
|
||||
@ -699,6 +699,8 @@ class PendingTransfers:
|
||||
completable_transfers = []
|
||||
for transfer in self.pending_transfers:
|
||||
if not transfer.is_completable(self.network_for(transfer.position)):
|
||||
if transfer.transport:
|
||||
self.cancel_transport(transfer.transport, transfer)
|
||||
transfer.disband()
|
||||
else:
|
||||
completable_transfers.append(transfer)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user