Skip to content

Commit 90ed63f

Browse files
committed
Made fasterOptionInteractions off by default is it breaks Optifine
1 parent 261fe06 commit 90ed63f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/jss/bugtorch/config/BugTorchConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public static void loadBaseMixinConfig(File configFile) {
196196
fasterEntityLivingBaseIsPotionActiveAndSetAir = config.getBoolean("fasterEntityLivingBaseIsPotionActiveAndSetAir", categoryPerformance, true, "isPotionActive returns immediately if there are no active potions.\nsetAir only updates its datawatcher when needed.");
197197
fasterGetBlockByIdForAirBlocks = config.getBoolean("fasterGetBlockByIdForAirBlocks", categoryPerformance, true, "When something gets air blocks from ID it will return faster.");
198198

199-
fasterOptionInteractions = config.getBoolean("fasterOptionInteractions", categoryPerformance, true, "Makes several functions used by option buttons faster.");
199+
fasterOptionInteractions = config.getBoolean("fasterOptionInteractions", categoryPerformance, false, "Makes several functions used by option buttons faster.");
200200
fasterOptionLoading = config.getBoolean("fasterOptionLoading", categoryPerformance, false, "Makes the function that reads options.txt much faster.");
201201

202202
moreAccurateLayeredSnowFaceCulling = config.getBoolean("moreAccurateLayeredSnowFaceCulling", categoryPerformance, true, "The faces of layered snow get culled more accurately when chunk meshes are created.");

0 commit comments

Comments
 (0)