Mineplex/GOD DAMN COSMETICS/gadget/gadgets/outfit/spacesuit/OutfitSpaceSuitLeggings.java

16 lines
344 B
Java
Raw Normal View History

package mineplex.core.gadget.gadgets.outfit.spacesuit;
import mineplex.core.gadget.GadgetManager;
import org.bukkit.Material;
public class OutfitSpaceSuitLeggings extends OutfitSpaceSuit
{
public OutfitSpaceSuitLeggings(GadgetManager manager)
{
super(manager, "Space Pants", -2, ArmorSlot.LEGS, Material.GOLD_LEGGINGS, (byte)0);
}
}