1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-30 18:09:09 +00:00

Fix: Mark vehicle status bars dirty when a vehicle leaves unbunching depot (#12516)

This commit is contained in:
Tyler Trahan
2024-04-18 12:45:00 -04:00
committed by Loïc Guilloux
parent fe3a0a2418
commit 10ae9a7ea1

View File

@@ -2543,6 +2543,7 @@ void Vehicle::LeaveUnbunchingDepot()
if (u->vehstatus & (VS_STOPPED | VS_CRASHED)) continue;
u->depot_unbunching_next_departure = next_departure;
SetWindowDirty(WC_VEHICLE_VIEW, u->index);
}
}