only optimize game settings if we are going to be auto testing
This commit is contained in:
parent
40a3177ae7
commit
9094c712d6
@ -47,6 +47,9 @@ public class BaritoneAutoTest implements AbstractGameEventListener, Helper {
|
|||||||
* Called right after the {@link GameSettings} object is created in the {@link Minecraft} instance.
|
* Called right after the {@link GameSettings} object is created in the {@link Minecraft} instance.
|
||||||
*/
|
*/
|
||||||
public void onPreInit() {
|
public void onPreInit() {
|
||||||
|
if (!BaritoneAutoTest.ENABLE_AUTO_TEST || !"true".equals(System.getenv("BARITONE_AUTO_TEST"))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
System.out.println("Optimizing Game Settings");
|
System.out.println("Optimizing Game Settings");
|
||||||
|
|
||||||
GameSettings s = mc.gameSettings;
|
GameSettings s = mc.gameSettings;
|
||||||
|
Loading…
Reference in New Issue
Block a user