1
0
Fork 0

Change: Show unbunching action in timetable window

pull/12351/head
Tyler Trahan 2024-03-22 08:50:55 -04:00
parent e141734e54
commit 66aec3d58d
1 changed files with 2 additions and 2 deletions

View File

@ -337,8 +337,8 @@ void DrawOrderString(const Vehicle *v, const Order *order, int order_index, int
SetDParam(6, CargoSpec::Get(order->GetRefitCargo())->name);
}
/* Do not show unbunching in the depot in the timetable window. */
if (!timetable && (order->GetDepotActionType() & ODATFB_UNBUNCH)) {
/* Show unbunching depot in both order and timetable windows. */
if (order->GetDepotActionType() & ODATFB_UNBUNCH) {
SetDParam(8, STR_ORDER_WAIT_TO_UNBUNCH);
}