Remove unnecessary base bindable class

Jarbo 8 exists
This commit is contained in:
Nicholas Ignoffo 2018-02-13 17:24:06 -08:00
parent 3fb708d2be
commit 65b89795bc
5 changed files with 25 additions and 55 deletions

View file

@ -1,11 +1,12 @@
package WayofTime.bloodmagic.item;
import WayofTime.bloodmagic.BloodMagic;
import WayofTime.bloodmagic.apibutnotreally.impl.ItemBindable;
import WayofTime.bloodmagic.apibutnotreally.iface.IBindable;
import WayofTime.bloodmagic.apibutnotreally.util.helper.PlayerHelper;
import WayofTime.bloodmagic.util.helper.TextHelper;
import com.google.common.base.Strings;
import net.minecraft.client.util.ITooltipFlag;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
@ -13,11 +14,12 @@ import net.minecraftforge.fml.relauncher.SideOnly;
import java.util.List;
public class ItemBindableBase extends ItemBindable {
public class ItemBindableBase extends Item implements IBindable {
public ItemBindableBase() {
super();
setCreativeTab(BloodMagic.TAB_BM);
setMaxStackSize(1);
}
@Override