Skip to content

Commit

Permalink
Add a fix for chisels weird "imma change stone to only be harvestable…
Browse files Browse the repository at this point in the history
… by a chisel" thing.
  • Loading branch information
bonii-xx committed Nov 16, 2014
1 parent 2d6c7f7 commit a56067b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/tconstruct/tools/TinkerTools.java
Expand Up @@ -341,6 +341,10 @@ public void postInit (FMLPostInitializationEvent evt)
{
vanillaToolRecipes();
modIntegration();

// Fix for chisels harvetslevel derp
if("chisel".equals(Blocks.stone.getHarvestTool(0)))
Blocks.stone.setHarvestLevel("pickaxe", 0, 0);

This comment has been minimized.

Copy link
@Mrkol

Mrkol Nov 21, 2014

This fix seems really wrong to me. How did this stuff even happen? Shouldn't you fix the cause of the problem, and not the result?

This comment has been minimized.

Copy link
@squeek502

squeek502 Nov 21, 2014

Contributor

The proper fix would be on Chisel's end. See: Qmunity/BluePower#97 (comment)

Not sure who's maintaining Chisel now.

}

private void addPartMapping ()
Expand Down

0 comments on commit a56067b

Please sign in to comment.