Crops use Deprecated getDrops method
Shadows-of-Fire opened this issue ยท 0 comments
Your crops are overriding
public List<ItemStack> getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune)
which is now @Deprecated
. Can you switch to the non-deprecated
public void getDrops(NonNullList<ItemStack> drops, IBlockAccess world, BlockPos pos, IBlockState state, int fortune)