More faster loading

This commit is contained in:
2024-06-09 22:40:52 +02:00
parent 6ce3ebb7fd
commit 2e74a2c274

View File

@@ -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();