This commit is contained in:
sirjonasxx 2020-12-29 19:19:12 +01:00
parent c6bfb250c7
commit 690e9c1f2b
2 changed files with 6 additions and 5 deletions

View File

@ -6,9 +6,9 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class TypeCheckerProducer {
import static gearth.services.Constants.UNITY_PACKETS;
public static volatile boolean UNITY_PACKETS = false;
public class TypeCheckerProducer {
public static List<TypeChecker> getValidators(HPacket packet) {
List<TypeChecker> typeCheckers = new ArrayList<>(Arrays.asList(

View File

@ -7,6 +7,7 @@ import gearth.protocol.HConnection;
import gearth.protocol.connection.HState;
import gearth.protocol.connection.proxy.ProxyProviderFactory;
import gearth.protocol.connection.proxy.SocksConfiguration;
import gearth.services.Constants;
import gearth.services.gpython.GPythonVersionUtils;
import gearth.ui.SubForm;
import gearth.ui.info.InfoController;
@ -62,10 +63,10 @@ public class ExtraController extends SubForm implements SocksConfiguration {
public GridPane grd_clientSelection;
public void initialize() {
TypeCheckerProducer.UNITY_PACKETS = rd_unity.isSelected();
Constants.UNITY_PACKETS = rd_unity.isSelected();
tgl_clientMode.selectedToggleProperty().addListener(observable -> {
parentController.connectionController.changeClientMode();
TypeCheckerProducer.UNITY_PACKETS = rd_unity.isSelected();
if (parentController != null) parentController.connectionController.changeClientMode();
Constants.UNITY_PACKETS = rd_unity.isSelected();
});
url_troubleshooting.setTooltip(new Tooltip("https://github.com/sirjonasxx/G-Earth/wiki/Troubleshooting"));