diff --git a/build.gradle b/build.gradle index 4be31a9..3669498 100644 --- a/build.gradle +++ b/build.gradle @@ -27,7 +27,14 @@ repositories { } } maven { url "https://maven.terraformersmc.com/releases/" } - + maven { + name = "meteor-maven" + url = "https://maven.meteordev.org/releases" + } + maven { + name = "meteor-maven-snapshots" + url = "https://maven.meteordev.org/snapshots" + } mavenCentral() jcenter() maven { url 'https://jitpack.io' } @@ -63,8 +70,8 @@ dependencies { include modImplementation("com.github.0x3C50:Renderer:aa67e1c979") - // Baritone API - modCompileOnly "com.github.wagyourtail:baritone:${project.baritone_version}" + // Baritone API from meteor's fork + modCompileOnly "meteordevelopment:baritone:1.20.4-SNAPSHOT" // LuaJ library modInclude("org.luaj:luaj-jse:3.0.1") @@ -109,6 +116,12 @@ jar { from("LICENSE") { rename { "${it}_${project.archivesBaseName}"} } + + manifest { + attributes( + 'Built-by': System.getProperty('user.name'), + ) + } } diff --git a/src/main/java/dev/heliosclient/altmanager/accounts/TheAlteningAccount.java b/src/main/java/dev/heliosclient/altmanager/accounts/TheAlteningAccount.java index 2a103d2..e247674 100644 --- a/src/main/java/dev/heliosclient/altmanager/accounts/TheAlteningAccount.java +++ b/src/main/java/dev/heliosclient/altmanager/accounts/TheAlteningAccount.java @@ -46,7 +46,7 @@ public String getDisplayName() { return getUsername(); } - //Original Authors LiquidBounce mc-authLib in kotlin + //Original Authors are LiquidBounce mc-authLib in kotlin //Similar Wiki for the authserver: https://wiki.vg/Legacy_Mojang_Authentication public static class YggdrasilUserAuthentication { private static final String clientIdentifier = UUID.randomUUID().toString();