mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-25 15:39:09 +00:00
(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)
This commit is contained in:
@@ -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 *rvi2 = RailVehInfo(old_engine_type);
|
||||
byte capacity = rvi->capacity;
|
||||
byte capacity = rvi2->capacity;
|
||||
Vehicle *first = GetFirstVehicleInChain(v);
|
||||
|
||||
//if (v->owner == _local_player) InvalidateWindowClasses(WC_TRAINS_LIST);
|
||||
|
Reference in New Issue
Block a user