Allow overriding of tool level requirements when harvesting a block, via the HarvestCheck event. (#6632)
This commit is contained in:
parent
035c01e222
commit
9e763a8334
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ public class ForgeHooks
|
||||||
return player.canHarvestBlock(state);
|
return player.canHarvestBlock(state);
|
||||||
}
|
}
|
||||||
|
|
||||||
return toolLevel >= state.getHarvestLevel();
|
return ForgeEventFactory.doPlayerHarvestCheck(player, state, toolLevel >= state.getHarvestLevel());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean canToolHarvestBlock(IWorldReader world, BlockPos pos, @Nonnull ItemStack stack)
|
public static boolean canToolHarvestBlock(IWorldReader world, BlockPos pos, @Nonnull ItemStack stack)
|
||||||
|
|
Loading…
Reference in a new issue