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,16 +1,16 @@
package WayofTime.bloodmagic.apibutnotreally.impl;
import WayofTime.bloodmagic.apibutnotreally.Constants;
import WayofTime.bloodmagic.apibutnotreally.iface.IBindable;
import WayofTime.bloodmagic.apibutnotreally.iface.ISigil;
import WayofTime.bloodmagic.apibutnotreally.util.helper.NBTHelper;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
/**
* Base class for all (static) sigils.
*/
public class ItemSigil extends ItemBindable implements ISigil {
public class ItemSigil extends Item implements IBindable, ISigil {
private int lpUsed;
public ItemSigil(int lpUsed) {
@ -32,16 +32,6 @@ public class ItemSigil extends ItemBindable implements ISigil {
return stack;
}
@Override
public boolean performArrayEffect(World world, BlockPos pos) {
return false;
}
@Override
public boolean hasArrayEffect() {
return false;
}
public int getLpUsed() {
return lpUsed;
}