Skip to content

Commit

Permalink
Fixed vessel not getting dissassociated on contract completion
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 committed Jan 7, 2024
1 parent 39f2689 commit 4801e66
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 4801e66

Please sign in to comment.