diff --git a/src/com/massivecraft/massivecore/command/type/RegistryType.java b/src/com/massivecraft/massivecore/command/type/RegistryType.java index 8e145cc9..f82be697 100644 --- a/src/com/massivecraft/massivecore/command/type/RegistryType.java +++ b/src/com/massivecraft/massivecore/command/type/RegistryType.java @@ -38,7 +38,7 @@ import com.massivecraft.massivecore.command.type.enumeration.TypeRabbitType; import com.massivecraft.massivecore.command.type.enumeration.TypeSkeletonType; import com.massivecraft.massivecore.command.type.enumeration.TypeSound; import com.massivecraft.massivecore.command.type.enumeration.TypeSpawnReason; -import com.massivecraft.massivecore.command.type.enumeration.TypeVariant; +import com.massivecraft.massivecore.command.type.enumeration.TypeParrotVariant; import com.massivecraft.massivecore.command.type.enumeration.TypeVillagerProfession; import com.massivecraft.massivecore.command.type.enumeration.TypeWorldType; import com.massivecraft.massivecore.command.type.primitive.TypeBooleanTrue; @@ -350,7 +350,7 @@ public class RegistryType try { - register(TypeVariant.get()); + register(TypeParrotVariant.get()); } catch (Throwable t) { diff --git a/src/com/massivecraft/massivecore/command/type/enumeration/TypeVariant.java b/src/com/massivecraft/massivecore/command/type/enumeration/TypeParrotVariant.java similarity index 56% rename from src/com/massivecraft/massivecore/command/type/enumeration/TypeVariant.java rename to src/com/massivecraft/massivecore/command/type/enumeration/TypeParrotVariant.java index d38d9aea..0811d428 100644 --- a/src/com/massivecraft/massivecore/command/type/enumeration/TypeVariant.java +++ b/src/com/massivecraft/massivecore/command/type/enumeration/TypeParrotVariant.java @@ -2,15 +2,15 @@ package com.massivecraft.massivecore.command.type.enumeration; import org.bukkit.entity.Parrot; -public class TypeVariant extends TypeEnum +public class TypeParrotVariant extends TypeEnum { // -------------------------------------------- // // INSTANCE & CONSTRUCT // -------------------------------------------- // - private static TypeVariant i = new TypeVariant(); - public static TypeVariant get() { return i; } - public TypeVariant() + private static TypeParrotVariant i = new TypeParrotVariant(); + public static TypeParrotVariant get() { return i; } + public TypeParrotVariant() { super(Parrot.Variant.class); }