Skip to content

1.8.8-1.0.2: DyeBuilder and PotionBuilder

Choose a tag to compare

@BelgianDev BelgianDev released this 15 Jan 18:27
· 2 commits to master since this release

This release contains mayor changes to the api, and adds new ItemBuilders.

This release contains mayor changes to the api, combining the ItemBuilder with all other builders.

   public static final ItemStack DYE_ITEM = ItemBuilder.create(Material.INK_SACK, 3)
            .build();

    public static final ItemStack POTION_ITEM = ItemBuilder.create(Material.POTION)
            .setMainEffect(PotionEffectType.HEAL)
            .addCustomPotionEffect(new PotionEffect(PotionEffectType.ABSORPTION, 30*20, 4))
            .build();

Full Changelog: 1.8.8-1.0.0...1.8.8-1.0.1... 1.8.8-1.0.2