File diff r8702:158df70aa3b4 → r8703:00ee5912a1f3
src/train_cmd.cpp
Show inline comments
 
@@ -214,6 +214,9 @@ void TrainConsistChanged(Vehicle* v)
 
		/* Reset color map */
 
		u->colormap = PAL_NONE;
 

	
 
		/* Set user defined data (must be done before other properties) */
 
		u->u.rail.user_def_data = GetVehicleProperty(u, 0x25, rvi_u->user_def_data);
 

	
 
		if (rvi_u->visual_effect != 0) {
 
			u->u.rail.cached_vis_effect = rvi_u->visual_effect;
 
		} else {
 
@@ -270,8 +273,6 @@ void TrainConsistChanged(Vehicle* v)
 
			u->cargo_cap = GetVehicleProperty(u, 0x14, rvi_u->capacity);
 
		}
 

	
 
		u->u.rail.user_def_data = GetVehicleProperty(u, 0x25, rvi_u->user_def_data);
 

	
 
		/* check the vehicle length (callback) */
 
		uint16 veh_len = CALLBACK_FAILED;
 
		if (HasBit(EngInfo(u->engine_type)->callbackmask, CBM_VEHICLE_LENGTH)) {