Tags
Creators
Details
1.1.2
Compatibility
Changes
What's Fixed in v1.1.2
Brewing Potion Autofill
When clicking a brewing recipe in JEI, the wrong potions were sometimes put into the bottle slots. For example, instead of filling in Awkward Potions, it would fill in the output potion or a completely different one, making the recipe fail.
All potions in Minecraft share the same item ID and are only told apart by their data. The autofill code was not checking that data, so any potion could match any other. This is now fixed. Potion matching is strict and always checks the exact type and effects, so the correct input potions are always placed.
Reforging Autofill
The autofill button was not working for the reforging station. Clicking autofill would do nothing for reforging slots. This is now fixed and works correctly for reforging and all other crafting stations.
Remote Storage Access
When opening storage through a Storage Access Remote (non-crafting, all tiers), the player inventory was not showing up or working at all. Items in your hotbar and inventory were invisible and could not be moved inside the remote access screen. This is now fixed and the player inventory works as expected.
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:3SFNKJXS:y9zryA8R"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:3SFNKJXS:y9zryA8R"
}

