20 lines
415 B
Java
20 lines
415 B
Java
package net.minecraft.item;
|
|
|
|
public class ItemBook extends Item
|
|
{
|
|
/**
|
|
* Checks isDamagable and if it cannot be stacked
|
|
*/
|
|
public boolean isEnchantable(ItemStack stack)
|
|
{
|
|
return stack.getCount() == 1;
|
|
}
|
|
|
|
/**
|
|
* Return the enchantability factor of the item, most of the time is based on material.
|
|
*/
|
|
public int getItemEnchantability()
|
|
{
|
|
return 1;
|
|
}
|
|
} |