blob: 69ab982858232c02a7d8ccdf341ae706b593ca27 [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_planks);
}
}