made the snow creator not infinitely use aura lol

This commit is contained in:
Ellpeck 2020-02-04 00:35:38 +01:00
parent 5b0b797a2f
commit f5ae1d59b4

View file

@ -52,7 +52,7 @@ public class TileEntitySnowCreator extends TileEntityImpl implements ITickableTi
Fluid fluid = this.world.getFluidState(down).getFluid();
if (fluid == Fluids.WATER) {
this.world.setBlockState(down, Blocks.ICE.getDefaultState());
} else if (Blocks.SNOW.getDefaultState().isValidPosition(this.world, pos)) {
} else if (Blocks.SNOW.getDefaultState().isValidPosition(this.world, pos) && this.world.getBlockState(pos).getBlock() != Blocks.SNOW) {
this.world.setBlockState(pos, Blocks.SNOW.getDefaultState());
if (this.snowmanCount < range / 2 && this.world.rand.nextFloat() >= 0.995F) {