From 88b9c23e01eb8580e34427394a6c2127ecfb104d Mon Sep 17 00:00:00 2001 From: Byte Date: Mon, 13 Jul 2026 21:42:13 +0200 Subject: [PATCH] fix(lceonline): Always use the latest download available MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit was stuck at 1.0.0b even tho i gave neo the https://github.com/lceonline/MCLEClient/releases/latest/download/LCENWindows64.zip link 😭😭 --- src/hooks/useGameManager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/useGameManager.ts b/src/hooks/useGameManager.ts index 9d3e409..793a2d6 100644 --- a/src/hooks/useGameManager.ts +++ b/src/hooks/useGameManager.ts @@ -81,7 +81,7 @@ export const BASE_EDITIONS = [ id: "lceonline", name: "LCE Online Client", desc: "Restoring the classic LCE online experience with friends, world hosting, leaderboards & more.", - url: "https://github.com/lceonline/MCLEClient/releases/download/v1.0.0b/LCENWindows64.zip", + url: "https://github.com/lceonline/MCLEClient/releases/latest/download/LCENWindows64.zip", titleImage: "/images/lceonline.png", supportsSlimSkins: false, logo: "/images/lce_online.png", @@ -660,4 +660,4 @@ export function useGameManager({ updateCustomization, saveCustomPath, }; -} \ No newline at end of file +}