Fix Plantable harvest handler not replanting (#781)

Another case of NutDerp!
This commit is contained in:
Nicholas Ignoffo 2016-06-05 16:55:01 -07:00
parent 8edf42a5cb
commit 600ff65aa8
3 changed files with 4 additions and 4 deletions

View file

@ -64,7 +64,7 @@ public class HarvestHandlerPlantable implements IHarvestHandler
if (foundSeed)
{
world.setBlockState(pos, blockStack.getBlock().getDefaultState());
world.destroyBlock(pos, false);
world.playEvent(2001, pos, Block.getStateId(blockStack.getState()));
for (ItemStack stack : drops)
{
if (!world.isRemote)