You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@JvmStatic val noBlindness by setting("No Blindness", true)
50
51
@JvmStatic val noDarkness by setting("No Darkness", true)
@@ -53,12 +54,81 @@ object NoRender : Module(
53
54
@JvmStatic val noUnderwater by setting("No Underwater Overlay", true)
54
55
@JvmStatic val noInWall by setting("No In Wall Overlay", true)
55
56
@JvmStatic val noChatVerificationToast by setting("No Chat Verification Toast", true)
56
-
@JvmStatic val particles by setting("Particles", particleMap.values.toSet(), description ="Particles to omit from rendering")
57
+
privateval particles by setting("Particles", particleMap.values.toSet(), emptySet(), "Particles to omit from rendering")
58
+
privateval playerEntities by setting("Player Entities", playerEntityMap.values.toSet(), emptySet(), "Player entities to omit from rendering")
59
+
privateval bossEntities by setting("Boss Entities", bossEntityMap.values.toSet(), emptySet(), "Boss entities to omit from rendering")
60
+
privateval decorationEntities by setting("Decoration Entities", decorationEntityMap.values.toSet(), emptySet(), "Decoration entities to omit from rendering")
61
+
privateval mobEntities by setting("Mob Entities", mobEntityMap.values.toSet(), emptySet(), "Mob entities to omit from rendering")
62
+
privateval passiveEntities by setting("Passive Entities", passiveEntityMap.values.toSet(), emptySet(), "Passive entities to omit from rendering")
63
+
privateval projectileEntities by setting("Projectile Entities", projectileEntityMap.values.toSet(), emptySet(), "Projectile entities to omit from rendering")
64
+
privateval vehicleEntities by setting("Vehicle Entities", vehicleEntityMap.values.toSet(), emptySet(), "Vehicle entities to omit from rendering")
65
+
privateval miscEntities by setting("Misc Entities", miscEntityMap.values.toSet(), emptySet(), "Miscellaneous entities to omit from rendering")
0 commit comments