From 2e74a2c274decce243483d74c2a0655374483329 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Majdand=C5=BEi=C4=87?= Date: Sun, 9 Jun 2024 22:40:52 +0200 Subject: [PATCH] More faster loading --- src/economy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();