Fix duplicate order not always preserving colour

wip-string
Jonathan G Rennison 5 months ago
parent 38e2605c14
commit ea85bbda97

@ -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 {

Loading…
Cancel
Save