File diff r27055:8db4d6833ae7 → r27056:ac04ccbeb86c
src/train_cmd.cpp
Show inline comments
 
@@ -632,13 +632,13 @@ static CommandCost CmdBuildRailWagon(DoC
 

	
 
		int x = TileX(tile) * TILE_SIZE | _vehicle_initial_x_fract[dir];
 
		int y = TileY(tile) * TILE_SIZE | _vehicle_initial_y_fract[dir];
 

	
 
		v->x_pos = x;
 
		v->y_pos = y;
 
		v->z_pos = GetSlopePixelZ(x, y);
 
		v->z_pos = GetSlopePixelZ(x, y, true);
 
		v->owner = _current_company;
 
		v->track = TRACK_BIT_DEPOT;
 
		v->vehstatus = VS_HIDDEN | VS_DEFPAL;
 

	
 
		v->SetWagon();
 

	
 
@@ -758,13 +758,13 @@ CommandCost CmdBuildRailVehicle(DoComman
 
		*ret = v;
 
		v->direction = DiagDirToDir(dir);
 
		v->tile = tile;
 
		v->owner = _current_company;
 
		v->x_pos = x;
 
		v->y_pos = y;
 
		v->z_pos = GetSlopePixelZ(x, y);
 
		v->z_pos = GetSlopePixelZ(x, y, true);
 
		v->track = TRACK_BIT_DEPOT;
 
		v->vehstatus = VS_HIDDEN | VS_STOPPED | VS_DEFPAL;
 
		v->spritenum = rvi->image_index;
 
		v->cargo_type = e->GetDefaultCargoType();
 
		v->cargo_cap = rvi->capacity;
 
		v->refit_cap = 0;