Compile Time Changes

class MhShuttleRowPickUpFrameVessel

This class is now removed.

Removed: public class MhShuttleRowPickUpFrameVessel extends MhRowPickUpFrameVessel {

Runtime/Behavior Changes

class MhShuttleBaySpawner

Previously the behavior mhShuttleBaySpreadPatternBehavior was added in gatherBehaviors(MhBehavior[] behaviors). It has now been moved to customOtherBehaviors() instead.

public class MhShuttleBaySpawner extends MhRackBaySpawner {
    /**
     * CustomOtherBehaviors.
     */
    public MhBehavior[] customOtherBehaviors() {
	...
	behaviors.exclude(mhBaySpreadPatternBehavior);
	behaviors << mhShuttleBaySpreadPatternBehavior;
	return behaviors;
    }
}