Skip to content

Commit 8aa467e

Browse files
Fix snow still not working correctly
1 parent 65a4e57 commit 8aa467e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/net/wurstclient/mixin/BlockModelRendererMixin.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ private float modifyOpacity(float original)
8787
at = @At(value = "INVOKE",
8888
target = "Ljava/util/List;isEmpty()Z",
8989
ordinal = 1),
90-
method = "tesselateWithoutAO(Lnet/minecraft/world/level/BlockAndTintGetter;Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZI)V")
90+
method = {
91+
"tesselateWithoutAO(Lnet/minecraft/world/level/BlockAndTintGetter;Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZI)V",
92+
"tesselateWithAO(Lnet/minecraft/world/level/BlockAndTintGetter;Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZI)V"})
9193
private boolean pretendEmptyToStopSecondRenderModelFaceFlatCall(
9294
List<BakedQuad> instance, Operation<Boolean> original,
9395
BlockAndTintGetter world, List<BlockModelPart> list, BlockState state,

0 commit comments

Comments
 (0)