Caupona

Caupona

490k Downloads

[Bug] Pumice that cannot be breaked is produced.

TwelveYO21 opened this issue ยท 3 comments

commented

Error Behaviour

As the title suggests.
Unable to destroy pumice blooms naturally generated by volcanic vent.

Expected Behaviour

Reproduce

Minecraft.NeoForge_.1.20.1.mp4

Crash Report

No response

Mod version

caupona-1.20.1-0.4.9

Server version

neoforge-47.1.101

Other mods and plugins

No response

commented

I actually encountered this too on a server, what other mods are you using?

It seems like there is a client-server desync going on, where the client thinks there is pumice there when there actually isn't.

ok.mp4
commented

FumaroleVentBlockEntity#placeFumarole likely just needs a !pLevel.isClientSide check.

public static void placeFumarole(Level pLevel, BlockPos pPos) {
RandomSource pRandom = pLevel.getRandom();
int dx = (pRandom.nextBoolean() ? 1 : -1) * (pRandom.nextInt(6));
int dz = (pRandom.nextBoolean() ? 1 : -1) * (pRandom.nextInt(6));
if (dx == 0 && dz == 0)
return;
BlockPos pendPos = pPos.offset(dx, 0, dz);
for (int i = 0; i < 3; i++) {
BlockState b0 = pLevel.getBlockState(pendPos);
BlockState b1 = pLevel.getBlockState(pendPos.below());
if (b0.isAir()) {
if (b1.getFluidState().is(Fluids.PUMICE_ON)) {
if (shouldPlacePumice(pLevel, pendPos))
pLevel.setBlockAndUpdate(pendPos, CPBlocks.PUMICE_BLOOM.get().defaultBlockState());
return;
}
}
pendPos = pendPos.below();
}
}

commented

Thanks for issue, it would be fixed in 0.4.10