package me.mrCookieSlime.Slimefun.Objects.SlimefunItem; import me.mrCookieSlime.Slimefun.Lists.RecipeType; import me.mrCookieSlime.Slimefun.Objects.Category; import org.bukkit.inventory.ItemStack; public class SoulboundItem extends SlimefunItem { public SoulboundItem(Category category, ItemStack item, String id, ItemStack[] recipe) { super(category, item, id, RecipeType.MAGIC_WORKBENCH, recipe); } public SoulboundItem(Category category, ItemStack item, String id, RecipeType type, ItemStack[] recipe) { super(category, item, id, type, recipe); } }