Skip to content

Commit

Permalink
Also fix fence recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
jaquadro committed Feb 11, 2015
1 parent 50a7db1 commit 8748615
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public ItemStack getCraftingResult (InventoryCrafting inventory) {
ItemStack wood2 = inventory.getStackInRowAndColumn(col + 1, row + 1);
if (wood1 == null || wood2 == null || !wood1.isItemEqual(wood2))
continue;
if (Block.getBlockFromItem(wood1.getItem()) != ModBlocks.thinLog)
continue;

Block woodBlock = TileEntityWoodProxy.getBlockFromComposedMetadata(wood1.getItemDamage());
int woodMeta = TileEntityWoodProxy.getMetaFromComposedMetadata(wood1.getItemDamage());
Expand Down

0 comments on commit 8748615

Please sign in to comment.