Skip to content

Commit

Permalink
Minor fix for invalid recipe combinations involving BitSaw.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlgorithmX2 committed Sep 24, 2017
1 parent 14c57e9 commit bf17a66
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/mod/chiselsandbits/crafting/BitSawCrafting.java
Expand Up @@ -83,6 +83,11 @@ private SawCraft getSawCraft(
return null;
}

if ( r.blockPosX != -1 )
{
return null;
}

r.chisledBlock = is;
r.blockPosX = x;
r.blockPosY = y;
Expand Down

0 comments on commit bf17a66

Please sign in to comment.