How can I let ProjectE's Matter Pickaxes mine other kinds of blocks?

How can I let ProjectE's Matter Pickaxes mine other kinds of blocks? - Yellow Excavator

I can't help but notice that there seems to be some inconsistencies with what a 'Matter' Pickaxe in ProjectE can and cannot 'right-click-mine' between various Minecraft modpacks.

So that made me wonder; Is there something in the configuration files that would allow me to add blocks that the pickaxes can 'right-click-mine'? Like, say, allow me to mine a cluster of glowstone with a right click? Or mine ores from the NetherOres mod? I can't seem to find the setting anywhere, but something must be causing the inconsistencies.



Best Answer

The following snippet was taken from the Project E source code (utils/ItemHelper):

public static boolean isOre(Block block, int meta)
{
    if (block == Blocks.lit_redstone_ore)
    {
        return true;
    }
    String oreDictName = getOreDictionaryName(new ItemStack(block, 1, meta));
    return oreDictName.startsWith("ore") || oreDictName.startsWith("denseore");
}

This seems to indicate that Project E uses the Forge Ore Dictionary to determine if something is an ore.

Other than asking the developers of a mod to add their ores to the dictionary, there isn't much you can do. If you want to add vanilla blocks to this dictionary, you will have to create a Forge mod yourself.




Pictures about "How can I let ProjectE's Matter Pickaxes mine other kinds of blocks?"

How can I let ProjectE's Matter Pickaxes mine other kinds of blocks? - Birds Eye Photography of Mine
How can I let ProjectE's Matter Pickaxes mine other kinds of blocks? - Bird's Eye View of Heavy Equipment
How can I let ProjectE's Matter Pickaxes mine other kinds of blocks? - Couple Looking at Each Other While Holding a Red Heart Shaped Balloon



Can a silk touch pickaxe mine grass block?

Silk touch now works. It can acquire these previously non-obtainable blocks: grass block, stone, coal ore, redstone ore, lapis lazuli ore, diamond ore, bookshelves, glass, and ice.

Can a silk touch shovel mine stone?

No, you still need a pickaxe for ores.

Can you use a silk touch pickaxe on grass?

By using the silk touch enchantment, you can grab limitless grass blocks. In its name, we know that it is linked to the ability to grab blocks, which is a charming tool. Thus, Silk Touch pickaxes cannot break a stone and remove grass from a block.

How many blocks can a stone to mine before breaking?

In Java Edition, this range is 5 blocks in Creative mode, and 4.5 blocks otherwise. In Bedrock Edition, the range is 5 blocks when using a keyboard/mouse or controller input, and when using touch input, the range is 12 blocks in Creative mode and 6 blocks otherwise.



How to Add Custom EMC Values for ProjectE for 1.7.10+




Sources: Stack Exchange - This article follows the attribution requirements of Stack Exchange and is licensed under CC BY-SA 3.0.

Images: Tom Fisk, Tom Fisk, Tom Fisk, RODNAE Productions