Make kelp opaque in MC 1.19 and below to match MC 1.20

This commit is contained in:
James Seibel
2023-08-31 19:42:35 -05:00
parent 13b26d5902
commit 6dc567e079
@@ -208,7 +208,7 @@ public class BlockStateWrapper implements IBlockStateWrapper
}
#if PRE_MC_1_20_1
return this.blockState.getMaterial().isLiquid();
return this.blockState.getMaterial().isLiquid() || !this.blockState.getFluidState().isEmpty();
#else
return !this.blockState.getFluidState().isEmpty();
#endif