Skip to content

Commit

Permalink
fix(block): fix #16
Browse files Browse the repository at this point in the history
  • Loading branch information
CallMeEchoCodes committed Dec 16, 2024
1 parent d600327 commit e15aa62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ protected FluidState getFluidState(BlockState state) {

@Override
protected void randomTick(BlockState state, ServerWorld world, BlockPos pos, Random random) {
if (state.get(AGE) >= 25 || !(random.nextDouble() < 0.14)) return;
if (state.get(AGE) >= 25 || random.nextDouble() >= 0.25) return;
int outOfWater = 0;
BlockPos waterPos = pos;
while (!world.isWater(waterPos)) {
Expand Down

0 comments on commit e15aa62

Please sign in to comment.