Skip to content

Commit

Permalink
fix: fix BlockTallWheatSeedDropableBaseComponentImpl::canKeepExisting()
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcmd committed Jun 28, 2024
1 parent 037162b commit 44beeba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public boolean canKeepExisting(BlockStateWithPos current, BlockStateWithPos neig
if (!willBreak)
willBreak = this.canPlaceOnBlock(dimension.getBlockState(BlockFace.DOWN.offsetPos(current.pos())).getBlockType());
}
return willBreak;
return !willBreak;
}

protected boolean notSamePlant(BlockState downBlock) {
Expand Down

0 comments on commit 44beeba

Please sign in to comment.