Skip to content

Commit

Permalink
BaritoneAPI from meteor-client's maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
tanishisherewithhh committed Sep 3, 2024
1 parent 1665272 commit d79c339
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
19 changes: 16 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
Expand Down Expand Up @@ -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")
Expand Down Expand Up @@ -109,6 +116,12 @@ jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}

manifest {
attributes(
'Built-by': System.getProperty('user.name'),
)
}
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit d79c339

Please sign in to comment.