Skip to content

Commit

Permalink
Update WireframeEntityRenderer.java Memory Leak Fix
Browse files Browse the repository at this point in the history
Possible fixes for the 1.21.3 Memory leak caused by ESP
  • Loading branch information
Banana1059 authored and MineGame159 committed Dec 7, 2024
1 parent 2025a1c commit a30bbdd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static void render(Render3DEvent event, Entity entity, double scale, Colo
matrices.push();
matrices.scale((float) scale, (float) scale, (float) scale);
renderer.render(state, matrices, MyVertexConsumerProvider.INSTANCE, 15);
matrices.push();
matrices.pop();
}

private static class MyVertexConsumerProvider implements VertexConsumerProvider {
Expand Down

0 comments on commit a30bbdd

Please sign in to comment.