mirror of https://github.com/OpenTTD/OpenTTD
(svn r2167) -fix: [autoreplace] trains now get the default cargo type if the engine
replaced from did not have cargo capacity (instead of refitting to passengers)release/0.4.5
parent
5e4961d902
commit
a9c52454c8
|
@ -1428,7 +1428,7 @@ int32 CmdReplaceVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
|
||||||
{
|
{
|
||||||
const RailVehicleInfo *rvi = RailVehInfo(new_engine_type);
|
const RailVehicleInfo *rvi = RailVehInfo(new_engine_type);
|
||||||
const RailVehicleInfo *rvi2 = RailVehInfo(old_engine_type);
|
const RailVehicleInfo *rvi2 = RailVehInfo(old_engine_type);
|
||||||
byte capacity = rvi->capacity;
|
byte capacity = rvi2->capacity;
|
||||||
Vehicle *first = GetFirstVehicleInChain(v);
|
Vehicle *first = GetFirstVehicleInChain(v);
|
||||||
|
|
||||||
//if (v->owner == _local_player) InvalidateWindowClasses(WC_TRAINS_LIST);
|
//if (v->owner == _local_player) InvalidateWindowClasses(WC_TRAINS_LIST);
|
||||||
|
|
Loading…
Reference in New Issue