
Fixes Reborn
The Fixes Reborn modification represents a simple solution based on a single mixin that fixes compatibility issues in Reborn Core. This allows using this library with a larger number of mod loaders, including Quilt and other similar systems.
Usage
For installation, simply place the mod file in the mods folder along with Tech Reborn or Reborn Core. No additional configuration is required for standard setup.
Configuration for Quilt
When using the Quilt loader, several additional steps need to be performed:
Step 1: JVM Configuration
Add the parameter -Dloader.debug.dump_override_paths=true
to the JVM arguments in the game launch settings.
Step 2: Dependency Resolution for Tech Reborn
Look for the dependency override line for Reborn Core in Tech Reborn in the Quilt Loader logs. It should look something like this:
[main/INFO]: Override path: '<mods>/TechReborn-5.11.13.jar!/META-INF/jars/RebornCore-5.11.13.jpg'
If you're not using Tech Reborn, proceed to step 2.1.
Step 2.1: Dependency Resolution for Reborn Core
If both Reborn Core and Tech Reborn are present in the mods folder, find the dependency override line for Reborn Core in the logs:
[main/INFO]: Override path: '<mods>/RebornCore-5.11.13.jpg'
Step 3: Override Configuration
For the case where only one of the mods is present in the mods folder, add the following code to the file <minecraft folder>/config/quilt-loader-overrides.json
, replacing <REPLACE THIS 1>
with the obtained dependency override value:
{
"schema_version": 1,
"overrides": [
{
"path": "<REPLACE THIS 1>",
"depends": [],
"breaks": [
{
"remove": {
"id": "quilt_loader"
}
}
]
}
]
}
Step 3.1: Two-Mod Configuration
If both Tech Reborn and Reborn Core are used simultaneously, use the following configuration, replacing <REPLACE THIS 1>
and <REPLACE THIS 2>
with the respective dependency paths:
{
"schema_version": 1,
"overrides": [
{
"path": "<REPLACE THIS 1>",
"depends": [],
"breaks": [
{
"remove": {
"id": "quilt_loader"
}
}
]
},
{
"path": "<REPLACE THIS 2>",
"depends": [],
"breaks": [
{
"remove": {
"id": "quilt_loader"
}
}
]
}
]
}
Frequently Asked Questions
Question: Getting an error that Reborn Core requires Quilt Loader any version!
Follow the steps in the "Configuration for Quilt" section.
Question: The mod is marked as incompatible with Reborn Core / Tech Reborn.
Create an error report in the appropriate repository for developing a workaround solution.
Question: Got banned from the Team Reborn Discord / issue tracker for using this mod!
The author is not responsible for consequences resulting from mod usage. Do not report issues caused by this mod to the Tech Reborn tracker and do not bother Team Reborn developers.
Question: Does this mod work with Quilt/Connector/etc.?
Most likely yes. If issues occur, create a report.
Question: Will there be backporting for older mod versions?
No. Older versions of Tech Reborn / Reborn Core should work fine. Problems only appeared in recent Reborn Core updates.
Question: The mod crashes with Tech Reborn / Reborn Core.
Ensure you're using the correct version of Fixes Reborn. If the issue persists, create an error report.