blob: c3ff017dc41c04bddaf5bfb66212629289845bf5 [file] [log] [blame] [raw]
package li.cil.oc.integration.magtools
import net.minecraft.item.ItemStack
object ModMagnanimousTools {
def isMagTool(stack: ItemStack) = stack != null && stack.getItem.getClass.getName.startsWith("com.vapourdrive.magtools.items.tools.")
}