1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-21 12:15:50 +00:00
Slimefun4/src/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/ExcludedSoulboundTool.java

20 lines
675 B
Java
Raw Normal View History

package me.mrCookieSlime.Slimefun.Objects.SlimefunItem;
2016-12-30 09:48:27 +00:00
import org.bukkit.inventory.ItemStack;
import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Objects.Category;
2016-12-30 09:48:27 +00:00
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.Interfaces.NotPlaceable;
2016-12-30 09:48:27 +00:00
public class ExcludedSoulboundTool extends SoulboundItem implements NotPlaceable {
public ExcludedSoulboundTool(Category category, ItemStack item, String name, RecipeType type, ItemStack[] recipe) {
super(category, item, name, type, recipe);
}
public ExcludedSoulboundTool(Category category, ItemStack item, String name, ItemStack[] recipe) {
super(category, item, name, recipe);
}
}