We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82f9a02 commit bbe1f0fCopy full SHA for bbe1f0f
src/main/java/net/earthcomputer/clientcommands/render/RenderQueue.java
@@ -74,7 +74,7 @@ private static MethodHandle findWorldRenderContextHandle() {
74
75
public static WorldRenderContext getWorldRenderContext(LevelRenderer renderer) {
76
try {
77
- return (WorldRenderContext) WORLD_RENDER_CONTEXT_HANDLE.invokeExact(renderer);
+ return (WorldRenderContext) WORLD_RENDER_CONTEXT_HANDLE.invoke(renderer);
78
} catch (Throwable e) {
79
throw new IllegalStateException("Exception calling WorldRenderContext getter", e);
80
}
0 commit comments