From b1ed91af2a843ee91c5a8342c9cce3f6beb4107d Mon Sep 17 00:00:00 2001 From: coolGi Date: Fri, 20 Oct 2023 00:57:39 +1030 Subject: [PATCH] Re-Enabled the updater by default on windows --- .../java/com/seibel/distanthorizons/core/config/Config.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java index 98f69b3d7..28693a882 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java @@ -997,8 +997,7 @@ public class Config public static ConfigEntry enableAutoUpdater = new ConfigEntry.Builder() .set( !SingletonInjector.INSTANCE.get(IMinecraftSharedWrapper.class).getInstallationDirectory().getName().equals("run") // Guesses that a dev would use the directory called "run" as their running directory, and clients wont - && !EPlatform.get().equals(EPlatform.WINDOWS) // FIXME: Updater on Windows is broken atm (and I have no idea on how to fix it) - ) // disable the update notification in dev clients + ) // disable the updater in dev clients .comment("" + "Automatically check for updates on game launch?") .build();