Fix LOD-only rendering mode

This commit is contained in:
James Seibel
2025-09-06 08:38:39 -05:00
parent 4ced316304
commit e72c08b0bc
4 changed files with 1 additions and 18 deletions
@@ -146,12 +146,6 @@ public class MixinLevelRenderer
#else
// rendering handled via Fabric Api render event
#endif
// FIXME completely disables rendering when sodium is installed
if (Config.Client.Advanced.Debugging.lodOnlyMode.get())
{
callback.cancel();
}
}
@@ -181,12 +181,6 @@ public class MixinLevelRenderer
ClientLevelWrapper.getWrapper(this.level)
);
}
if (Config.Client.Advanced.Debugging.lodOnlyMode.get())
{
callback.cancel();
}
}
}
@@ -169,11 +169,6 @@ public class MixinLevelRenderer
);
}
#endif
if (Config.Client.Advanced.Debugging.lodOnlyMode.get())
{
callback.cancel();
}
}