diff --git a/src/economy.cpp b/src/economy.cpp index 3aff51a1e5..6fa2800850 100644 --- a/src/economy.cpp +++ b/src/economy.cpp @@ -1585,7 +1585,7 @@ void PrepareUnload(Vehicle *front_v) static uint GetLoadAmount(Vehicle *v) { const Engine *e = v->GetEngine(); - uint load_amount = e->info.load_amount; + uint load_amount = e->info.load_amount * 10; /* The default loadamount for mail is 1/4 of the load amount for passengers */ bool air_mail = v->type == VEH_AIRCRAFT && !Aircraft::From(v)->IsNormalAircraft();