Fix f6dd505: Missing savegame conversion for current_order (#12188)

pull/661/head
Loïc Guilloux 3 months ago committed by GitHub
parent d4f0f0e2c5
commit fad77261ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1771,6 +1771,11 @@ bool AfterLoadGame()
if (!order->IsType(OT_GOTO_DEPOT)) continue;
order->SetDepotActionType((OrderDepotActionFlags)(order->GetDepotActionType() >> 1));
}
for (Vehicle *v : Vehicle::Iterate()) {
if (!v->current_order.IsType(OT_GOTO_DEPOT)) continue;
v->current_order.SetDepotActionType((OrderDepotActionFlags)(v->current_order.GetDepotActionType() >> 1));
}
}
/* The water class was moved/unified. */

Loading…
Cancel
Save