aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-24 19:51:13 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-24 19:51:13 +0200
commit2538073a3568ee58591a637445640299a6dde1a8 (patch)
treec5fe802c918d41800d20755fd651337fb88fdd1a /src/main/java/at/hannibal2/skyhanni
parent3e754cd08a67631a984caa3aa5580e05bba26ac2 (diff)
downloadskyhanni-2538073a3568ee58591a637445640299a6dde1a8.tar.gz
skyhanni-2538073a3568ee58591a637445640299a6dde1a8.tar.bz2
skyhanni-2538073a3568ee58591a637445640299a6dde1a8.zip
changed hannibal2 name
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-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
2 files changed, 3 insertions, 3 deletions
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)
}