158159160161162163164165166167168
* Gets the Minecart Type component of this Minecart * * @return Minecart Type */ public MinecartType getType() { MinecartType type = getOwner().get(MinecartType.class); if (type == null) { type = setType(RideableMinecartType.class); } return type; }