Minecraft Mod. Adds sorting networks, filter systems, block extenders and more.
- Latest Builds on my Jenkins
- @BlayTheNinth on Twitter
Refined Relocation 2 is still in very early development, so implementing the API in your mod would be a pretty dumb idea. However, if you'd like to put what's there already into your dev environment, you can do so by following these steps.
- Register Refined Relocation's maven repository by adding the following lines to your build.gradle:
repositories {
maven {
url = "http://repo.blay09.net"
}
}
- Then, add a dependency to either just the
Refined Relocation API (api)or, if you want Refined Relocation to be available while testing as well, the deobfuscated version (dev):
dependencies {
compile 'net.blay09.mods:refinedrelocation2:major.minor.build:dev'
}
Make sure you enter the correct version number for the Minecraft version you're developing for. The major version is the important part here, it is increased for every Minecraft update. See the Jenkins to find out the latest version number.
- Done! Run
gradlew
to update your project and you'll be good to go.
The latest Refined Relocation API and an unobfuscated version of the mod can also be downloaded from my Jenkins, if you're not into all that Maven stuff.