Fix duplicate order not always preserving colour

This commit is contained in:
Jonathan G Rennison 2024-01-02 19:38:14 +00:00
parent 38e2605c14
commit ea85bbda97

View File

@ -409,7 +409,7 @@ void Order::AssignOrder(const Order &other)
if (other.extra != nullptr && (this->GetUnloadType() == OUFB_CARGO_TYPE_UNLOAD || this->GetLoadType() == OLFB_CARGO_TYPE_LOAD
|| (this->IsType(OT_LABEL) && this->GetLabelSubType() == OLST_TEXT)
|| other.extra->xdata != 0 || other.extra->xdata2 != 0 || other.extra->xflags != 0 || other.extra->dispatch_index != 0)) {
|| other.extra->xdata != 0 || other.extra->xdata2 != 0 || other.extra->xflags != 0 || other.extra->dispatch_index != 0 || other.extra->colour != 0)) {
this->AllocExtraInfo();
*(this->extra) = *(other.extra);
} else {