mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-21 06:34:23 +00:00
(svn r12687) -Change: show when a vehicle is actually leaving the station instead of loading/unloading.
This commit is contained in:
parent
5e2a5953a4
commit
af3723e217
@ -2780,6 +2780,7 @@ STR_882C_BUILT_VALUE :{LTBLUE}{ENGINE
|
||||
STR_882D_VALUE :{LTBLUE}{ENGINE}{BLACK} Value: {LTBLUE}{CURRENCY}
|
||||
STR_882E :{WHITE}{VEHICLE}
|
||||
STR_882F_LOADING_UNLOADING :{LTBLUE}Loading / Unloading
|
||||
STR_LEAVING :{LTBLUE}Leaving
|
||||
STR_TRAIN_MUST_BE_STOPPED :{WHITE}Train must be stopped inside a depot
|
||||
STR_8830_CAN_T_SEND_TRAIN_TO_DEPOT :{WHITE}Can't send train to depot...
|
||||
STR_8831_NO_MORE_SPACE_FOR_ORDERS :{WHITE}No more space for orders
|
||||
|
@ -1990,7 +1990,7 @@ static void DrawVehicleViewWindow(Window *w)
|
||||
|
||||
case OT_LEAVESTATION:
|
||||
if (v->type != VEH_AIRCRAFT) {
|
||||
str = STR_882F_LOADING_UNLOADING;
|
||||
str = STR_LEAVING;
|
||||
break;
|
||||
}
|
||||
/* fall-through if aircraft. Does this even happen? */
|
||||
|
Loading…
Reference in New Issue
Block a user