Skip to content

Commit

Permalink
fix(block): fix #15
Browse files Browse the repository at this point in the history
  • Loading branch information
CallMeEchoCodes committed Dec 16, 2024
1 parent 8074849 commit e1d79e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected int getGrowthLength(Random random) {

@Override
protected boolean chooseStemState(BlockState state) {
return true;
return state.isAir() || state.isOf(Blocks.WATER);
}

@Override
Expand Down

0 comments on commit e1d79e7

Please sign in to comment.