diff --git a/Readme.md b/Readme.md index 833cb9696..ae33aa9e8 100644 --- a/Readme.md +++ b/Readme.md @@ -4,7 +4,7 @@ This repo is for the Distant Horizons mod. The purpose of this submodule is to isolate code that isn't tied to a specific version of minecraft. This prevents us from having duplicate code; reducing errors and potentially helping us port to different versions faster and easier. Check out the mod's main GitLab page here: -https://gitlab.com/jeseibel/minecraft-lod-mod +https://gitlab.com/jeseibel/distant-horizons ## source code installation diff --git a/core/src/main/java/com/seibel/distanthorizons/core/jar/installer/GitlabGetter.java b/core/src/main/java/com/seibel/distanthorizons/core/jar/installer/GitlabGetter.java index 1d3f5668b..e35396cee 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/jar/installer/GitlabGetter.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/jar/installer/GitlabGetter.java @@ -145,7 +145,7 @@ public class GitlabGetter public static URL getLatestForVersion(String mcVer) { try { - return new URL("https://gitlab.com/jeseibel/minecraft-lod-mod/-/jobs/artifacts/main/download?job=build:%20[" + mcVer + "]"); + return new URL("https://gitlab.com/jeseibel/distant-horizons/-/jobs/artifacts/main/download?job=build:%20[" + mcVer + "]"); } catch (Exception e) { e.printStackTrace(); return null; } // This should always be safe (unless you stuff up **badly** somewhere) } }