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 9735280 commit 91f16eaCopy full SHA for 91f16ea
1 file changed
src/main/java/com/falsepattern/falsetweaks/modules/dynlights/base/DynamicLight.java
@@ -34,7 +34,7 @@ public DynamicLight(Entity entity) {
34
}
35
36
public void update(RenderGlobal renderGlobal) {
37
- val isHandLight = entity == Minecraft.getMinecraft().renderViewEntity && Compat.neodymiumActive();
+ val isHandLight = entity == Minecraft.getMinecraft().renderViewEntity && Compat.neodymiumActive() && !Compat.isShaders();
38
if (!isHandLight && DynamicLightsDrivers.isDynamicLightsFast()) {
39
long timeNowMs = System.currentTimeMillis();
40
if (timeNowMs < this.timeCheckMs + 500L) {
0 commit comments