From 1cf3ff7dbdb5679df72ef4c7816fb89b9fb05f90 Mon Sep 17 00:00:00 2001 From: Hazar Date: Sat, 21 Jan 2023 13:10:36 +0300 Subject: [PATCH] Updated http->https protocol of resource page The page no longer supports http protocol. --- CmlLib/Core/MojangServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CmlLib/Core/MojangServer.cs b/CmlLib/Core/MojangServer.cs index d9e6bda..7295939 100644 --- a/CmlLib/Core/MojangServer.cs +++ b/CmlLib/Core/MojangServer.cs @@ -6,7 +6,7 @@ public static readonly string Auth = "https://authserver.mojang.com/", Version = "https://launchermeta.mojang.com/mc/game/version_manifest.json", Library = "https://libraries.minecraft.net/", - ResourceDownload = "http://resources.download.minecraft.net/", + ResourceDownload = "https://resources.download.minecraft.net/", LauncherMeta = "http://launchermeta.mojang.com/mc/launcher.json", JavaManifest = "https://launchermeta.mojang.com/v1/products/java-runtime/2ec0cc96c44e5a76b9c8b7c39df7210883d12871/all.json"; }