aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/ConfigEditor.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt4
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index b1ce01353..d1f2d4633 100644
--- a/README.md
+++ b/README.md
@@ -6,9 +6,9 @@
[![discord badge](https://img.shields.io/discord/997079228510117908?label=discord&color=9089DA&logo=discord&style=for-the-badge)](https://discord.gg/8DXVN4BJz3)
[![made with java](https://img.shields.io/badge/Made%20With-Kotlin-orange?style=for-the-badge&logo=kotlin&logocolor=white)](https://www.java.com/)
-[![downloads](https://img.shields.io/github/downloads/hannibal00212/SkyHanni/total?label=downloads&color=208a19&logo=github&style=for-the-badge)](https://github.com/hannibal00212/SkyHanni/releases)
+[![downloads](https://img.shields.io/github/downloads/hannibal002/SkyHanni/total?label=downloads&color=208a19&logo=github&style=for-the-badge)](https://github.com/hannibal00212/SkyHanni/releases)
</div>
SkyHanni is a Minecraft modification that adds new features to Hypixel Skyblock. It is in beta, so expect bugs.
-Exhaustive List of all features so far: https://github.com/hannibal00212/SkyHanni/blob/master/FEATURES.md \ No newline at end of file
+Exhaustive List of all features so far: https://github.com/hannibal002/SkyHanni/blob/master/FEATURES.md \ No newline at end of file
diff --git a/src/main/java/at/hannibal2/skyhanni/config/ConfigEditor.java b/src/main/java/at/hannibal2/skyhanni/config/ConfigEditor.java
index 407a0bf82..2d50958ad 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/ConfigEditor.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/ConfigEditor.java
@@ -57,7 +57,7 @@ public class ConfigEditor extends GuiElement {
};
private static final String[] socialsLink = new String[]{
"https://discord.gg/8DXVN4BJz3",
- "https://github.com/hannibal00212/SkyHanni"
+ "https://github.com/hannibal002/SkyHanni"
};
private static final ResourceLocation SEARCH_ICON = new ResourceLocation("notenoughupdates:core/search.png");
public static ConfigEditor editor = new ConfigEditor(SkyHanniMod.feature);
diff --git a/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt b/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt
index e12cbc637..2dc65f358 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt
@@ -149,14 +149,14 @@ class RepoManager(private val configLocation: File) {
}
private fun getCommitApiUrl(): String {
- val repoUser = "hannibal00212"
+ val repoUser = "hannibal002"
val repoName = "SkyHanni-REPO"
val repoBranch = "main"
return String.format("https://api.github.com/repos/%s/%s/commits/%s", repoUser, repoName, repoBranch)
}
private fun getDownloadUrl(commitId: String?): String {
- val repoUser = "hannibal00212"
+ val repoUser = "hannibal002"
val repoName = "SkyHanni-REPO"
return String.format("https://github.com/%s/%s/archive/%s.zip", repoUser, repoName, commitId)
}