This commit is contained in:
kirillsaint 2023-08-31 14:39:33 +06:00
parent 05fb9d60bf
commit da32a4806b
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class OptifinePatch {
}
optifineConfig.createNewFile();
FileOutputStream outputStream = new FileOutputStream(optifineConfig);
String str = "ofFastRender:true";
String str = "ofFastRender:false";
byte[] strToBytes = str.getBytes();
outputStream.write(strToBytes);
@ -30,5 +30,6 @@ public class OptifinePatch {
public static void start() {
optifineConfig.delete();
optifineConfigOriginal.renameTo(optifineConfig);
Minecraft.getMinecraft().gameSettings.loadOptions();
}
}