Links
Tags
Creators
Details
Licensed MIT
Published 2 months ago
Updated yesterday
All versions
0.4.0+26.3-neoforge
Release
mcpfabric 0.4.0+26.3 (NeoForge)yesterday 5
Uploaded by
Compatibility
Minecraft: Java Edition
26.3
Platform
NeoForge
Supported environments
Client and server
Changes
Added
- NeoForge support. 13 NeoForge jars (
mcpfabric-neoforge-<version>+<mc>.jar) for Minecraft 1.21.1, 1.21.3–1.21.11, 26.1.2, 26.2 and 26.3, with the same tools, bridge and config as the Fabric build, published to the same Modrinth project as their own releases. 1.21.2 is not covered (NeoForge only shipped two abandoned betas for it). info.statusnow reports the mod loader ("loader": "fabric"/"neoforge").
Changed
- Loader-specific code is isolated behind a small
Platformlayer and per-loader entrypoints (dev.mcpfabric.fabric,dev.mcpfabric.neoforge); everything else is shared. The Fabric entrypoints moved todev.mcpfabric.fabric.FabricEntrypointanddev.mcpfabric.client.fabric.FabricClientEntrypoint. - Fabric and NeoForge are released independently: a
vX.Y.Ztag publishes only Fabric, aneoforge-vX.Y.Ztag only NeoForge (publishFabric/publishNeoForge,buildFabric/buildNeoForge).publishModsis gone. - NeoForge nodes build against binary-patched Minecraft (ModDevGradle
disableRecompilation), which keeps the 13 extra nodes fast and light on memory in CI.
Fixed
- Client RPCs sent while the game is still starting return
no_client_playerinstead of an internalNullPointerException(on NeoForge the bridge starts before Minecraft exists).
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:eA63YgUh:9f0IaRXi"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:eA63YgUh:9f0IaRXi"
}

