1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-26 16:09:10 +00:00

Fix 661bdae2: cargo_payment not cleared when aircraft loading cancelled

This commit is contained in:
Jonathan G Rennison
2024-01-16 00:55:09 +00:00
committed by rubidium42
parent fd073a2810
commit 17d47ba06f

View File

@@ -23,6 +23,7 @@
#include "../company_base.h"
#include "../company_func.h"
#include "../disaster_vehicle.h"
#include "../economy_base.h"
#include "../safeguards.h"
@@ -205,6 +206,7 @@ void UpdateOldAircraft()
Vehicle *v = *iter;
if (v->type == VEH_AIRCRAFT && !v->current_order.IsType(OT_LOADING)) {
iter = st->loading_vehicles.erase(iter);
delete v->cargo_payment;
} else {
++iter;
}