You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just add some doc for how to include Baritone. It took me a while until I realized that Impact has own maven and that Baritone can be included even into Fabric mod without using broken Fabritone.
At least like cover this
// This adds the Impact maven and spongepowered maven which is required by Baritone
repositories {
maven {
name = 'impactdevelopment-repo'
url = 'https://impactdevelopment.github.io/maven/'
}
maven {
name = 'spongepowered-repo'
url = 'http://repo.spongepowered.org/maven/'
}
mavenCentral()
jcenter()
}
dependencies {
// This adds Baritone
modImplementation 'cabaletta:baritone-standalone:1.6'
include 'cabaletta:baritone-standalone:1.6'
// This adds Baritone api
modImplementation 'cabaletta:baritone-api:1.6'
include 'cabaletta:baritone-api:1.6'
}
With this you can include Baritone into Fabric mod. Might be helpful if you also cover how to do it with Forge. I don't work with Forge so I don't know.
The text was updated successfully, but these errors were encountered:
Just add some doc for how to include Baritone. It took me a while until I realized that Impact has own maven and that Baritone can be included even into Fabric mod without using broken Fabritone.
At least like cover this
With this you can include Baritone into Fabric mod. Might be helpful if you also cover how to do it with Forge. I don't work with Forge so I don't know.
The text was updated successfully, but these errors were encountered: