1.2.9
Compatibility
Required content
Changes
Advanced Reborn is an addon for Tech Reborn on Fabric.
It adds several extra items and machines inspired by IndustrialCraft 2 and older Tech Reborn-style addons, including:
- Nano Suit armor
- Charge Pads
- Ray Generators and compressed solar panels
- Configuration wrench
- Advanced batteries
- Miscellaneous utility items and machines
Changes In This Fork
This fork includes a compatibility fix for the 1.20.1 branch when running with RebornCore 5.8.15 and TechReborn 5.8.15.
- Updated
NanoSuitItemto use the newApplyArmorToDamageCallbacksignature - Updated
NanoSuitItemarmor tick method to match the currentArmorBlockEntityTickerAPI - Updated the
1.20.1build setup to resolve and compile againstRebornCore 5.8.15 - Updated the
1.20.1build setup to resolve and compile againstTechReborn 5.8.15 - Added the required Team Reborn Energy API dependency for the patched
1.20.1build - Updated the
1.20.1build toolchain to a compatible Gradle and Loom version
Purpose
The main goal of these changes is to keep the 1.20.1 build working with newer RebornCore and Tech Reborn releases, especially in the Nano Suit damage handling path that was causing a runtime crash.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:YRCLiqF5:gJzpRgdg"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:YRCLiqF5:gJzpRgdg"
}

