blob: 8c5e76ea5731b202155ac3b3a2890fdd9c9c0316 [file] [log] [blame] [raw]
package com.legacy.aether.items.tools;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.items.util.EnumAetherToolType;
public class ItemSkyrootTool extends ItemAetherTool
{
public ItemSkyrootTool(EnumAetherToolType toolType)
{
super(ToolMaterial.WOOD, toolType);
}
@Override
public boolean getIsRepairable(ItemStack toRepair, ItemStack repair)
{
return repair.getItem() == Item.getItemFromBlock(BlocksAether.skyroot_plank);
}
}