Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.19 KB

File metadata and controls

30 lines (27 loc) · 1.19 KB

DataBreaker

Maven Version

DataBreaker speeds up your minecraft loading time by stopping the execution of DataFixerUpper. As you can imagine this is very hacky and stops world backwards compatibility. This tool is intended for MOD DEVS ONLY. Do not use it in a normal Minecraft environment. Even if you try it will just crash you anyway.

How to add this mod to your development environment

If you have the inclination to add databreaker to your dev env, follow these 2 easy steps:

1. add this to your build script before dependencies:

❗Note: do NOT put it in the publishing section

repositories {
	maven {
		name = "Gegy"
		url = "https://maven.gegy.dev"
	}
}

2. add this to your build script in dependencies:

For databreaker_version use the latest release version number. If you don't want the latest build, you can find a list of builds on Maven.

modRuntime ("supercoder79:databreaker:${databreaker_version}") {
	exclude module: "fabric-loader"
}