Skip to content

Commit 96cf1ad

Browse files
committed
disable some broken configs
1 parent e357c00 commit 96cf1ad

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/main/java/com/falsepattern/falsetweaks/config/ModuleConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ public class ModuleConfig {
136136
"Makes translucent geometry of chunks render slightly closer to the camera. (experimental)",
137137
"This reduces Z-Fighting on blocks which have overlapping opaque and translucent geometry,",
138138
"at the cost of far away geometry sometimes rendering on top of opaque geometry. (>100~ blocks)",
139+
"Don't turn this on unless you absolutely need it.",
139140
"FPS impact: Unknown"
140141
})
141142
@Config.LangKey("config.falsetweaks.translucent_block_layers_fix")

src/main/java/com/falsepattern/falsetweaks/config/RenderingSafetyConfig.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ public class RenderingSafetyConfig {
3838
@Config.DefaultBoolean(true)
3939
public static boolean ENABLE_BLOCK;
4040

41-
@Config.Comment("Enable safety wrapper for tile entities.")
41+
@Config.Comment({"Enable safety wrapper for tile entities.",
42+
"Buggy, don't use."})
4243
@Config.LangKey
43-
@Config.Name(value = "tesr", migrations = "")
44-
@Config.DefaultBoolean(true)
44+
@Config.Name(value = "tileEntity")
45+
@Config.DefaultBoolean(false)
4546
public static boolean ENABLE_TESR;
4647

4748
@Config.Comment("Enable safety wrapper for items.")

0 commit comments

Comments
 (0)