Fix HarvestHandlerStem not working (#1165)

This commit is contained in:
Nicholas Ignoffo 2017-06-21 19:11:08 -07:00
parent 061850ee29
commit 16d4609a48

View file

@ -39,7 +39,7 @@ public class HarvestHandlerStem implements IHarvestHandler
BlockPos cropPos = pos;
if (HarvestRegistry.getStemCrops().containsKey(blockStack))
{
EnumFacing cropDir = blockStack.getState().getValue(BlockStem.FACING);
EnumFacing cropDir = blockStack.getBlock().getActualState(blockStack.getState(), world, pos).getValue(BlockStem.FACING);
if (cropDir != EnumFacing.UP)
{