A book is a book is a book

This commit is contained in:
WayofTime 2015-01-30 09:29:22 -05:00
parent 5b4d4ff498
commit ae1b86def2
17 changed files with 1162 additions and 41 deletions

View file

@ -8,6 +8,7 @@ import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.entity.mob.BookEntityItem;
public class ItemBMBook extends Item
{
@ -47,4 +48,15 @@ public class ItemBMBook extends Item
stack.setTagCompound(new NBTTagCompound());
}
@Override
public boolean hasCustomEntity(ItemStack stack)
{
return true;
}
@Override
public Entity createEntity(World world, Entity location, ItemStack itemstack)
{
return new BookEntityItem(world, location, itemstack);
}
}