blob: eb24e38f24fe05fc8eae0331a59dee8698dd6bfc [file] [log] [blame] [raw]
package li.cil.oc.integration.util
import net.minecraft.item.ItemStack
object TinkersConstruct {
def isInfiTool(stack: ItemStack) = stack != null && stack.getItem.getClass.getName.startsWith( """tconstruct.""")
}