summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/economy.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/economy.cpp b/src/economy.cpp
index 9d7d78143..886a07658 100644
--- a/src/economy.cpp
+++ b/src/economy.cpp
@@ -382,6 +382,9 @@ void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner)
v->colourmap = PAL_NONE;
if (v->IsEngineCountable()) Company::Get(new_owner)->num_engines[v->engine_type]++;
if (v->IsPrimaryVehicle()) v->unitnumber = unitidgen[v->type].NextID();
+
+ /* Invalidate the vehicle's cargo payment "owner cache". */
+ if (v->cargo_payment != NULL) v->cargo_payment->owner = NULL;
}
}
}