From c0014d50b44ecc9ff4fcf0baeab258e3a67cbffa Mon Sep 17 00:00:00 2001 From: Amnet Date: Tue, 25 Jun 2013 12:55:51 +0200 Subject: [PATCH] Fixed some MFR compatibility. --- .../integration/minefactoryreloaded/FruitLeaves.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minecraft/biomesoplenty/integration/minefactoryreloaded/FruitLeaves.java b/src/minecraft/biomesoplenty/integration/minefactoryreloaded/FruitLeaves.java index 2f5a1c353..b31481cf8 100644 --- a/src/minecraft/biomesoplenty/integration/minefactoryreloaded/FruitLeaves.java +++ b/src/minecraft/biomesoplenty/integration/minefactoryreloaded/FruitLeaves.java @@ -38,7 +38,7 @@ public class FruitLeaves implements IFactoryFruit @Override public ItemStack getReplacementBlock(World world, int x, int y, int z) { - return null; + return new ItemStack(world.getBlockId(x, y, z), 1, world.getBlockMetadata(x,y,z)); } @Override