(svn r8465) -Regression (r8455): Switching from dual to single head should switch to wagon if power is zero. .Or something.

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
peter1138 18 years ago
parent 8933ffd9ac
commit d838a477e2

@ -327,7 +327,8 @@ static bool RailVehicleChangeInfo(uint engine, int numinfo, int prop, byte **buf
rvi[i].power *= 2;
rvi[i].running_cost_base *= 2;
}
rvi[i].railveh_type = RAILVEH_SINGLEHEAD;
rvi[i].railveh_type = rvi[i].power == 0 ?
RAILVEH_WAGON : RAILVEH_SINGLEHEAD;
}
}
break;

Loading…
Cancel
Save