forked from mirror/OpenTTD
(svn r5853) -Fix: [elrails] FS#178 Electric Trains can leave Conventional Depot
now the user will get an error if he tries to start the train and the status bar will say "no power" instead of "stopped" Electric trains already driving in and out of non-electrified depots will still do so, but you can't start new ones
This commit is contained in:
@@ -954,7 +954,11 @@ static void TrainViewWndProc(Window *w, WindowEvent *e)
|
||||
str = STR_885C_BROKEN_DOWN;
|
||||
} else if (v->vehstatus & VS_STOPPED) {
|
||||
if (v->u.rail.last_speed == 0) {
|
||||
str = STR_8861_STOPPED;
|
||||
if (v->u.rail.cached_power == 0) {
|
||||
str = STR_TRAIN_NO_POWER;
|
||||
} else {
|
||||
str = STR_8861_STOPPED;
|
||||
}
|
||||
} else {
|
||||
SetDParam(0, v->u.rail.last_speed);
|
||||
str = STR_TRAIN_STOPPING + _patches.vehicle_speed;
|
||||
|
Reference in New Issue
Block a user