Skip to content

Commit

Permalink
Fix vessel not getting dissassociated on contract completion (#37)
Browse files Browse the repository at this point in the history
Looks like the line was deleted by mistake in 3a25a03
  • Loading branch information
IO5 authored Jan 8, 2024
1 parent af495f9 commit c047b82
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,7 @@ protected void OnContractCompleted(Contract c)
if (dissassociateVesselsOnContractCompletion && !string.IsNullOrEmpty(define) && trackedVessel != null)
{
LoggingUtil.LogVerbose(this, "Removing defined vessel {0}", define);
ContractVesselTracker.Instance.AssociateVessel(define, null);
}

if (!string.IsNullOrEmpty(defineList) && trackedVessel != null)
Expand Down

0 comments on commit c047b82

Please sign in to comment.