Links
Tags
Creators
Details
Licensed ARR
Published 3 months ago
Updated last week
All versions
1.3.0+26.3
Release
1.3.0+26.3last week 52
Compatibility
Minecraft: Java Edition
26.3
Platform
Fabric
Supported environments
Client and server
Required content
Any compatible version
Changes
Added
- NeoForge support on MC 26.3. The 26 NeoForge matrix stopped at 26.2. NeoForge does ship 26.3
(now
26.3.0.6-beta); the actual blocker was ModDevGradle. On 2.0.140 the NFRT:createMinecraftArtifactsrecompile dies inside Minecraft's own source -- NeoForge's access transformer widensHolderSet.Named.contents()to public and the widening is not propagated to the anonymous subclassHolderSet.emptyNamedreturns, so javac rejects the recompiled game before a line of mod source is compiled. MDG 2.0.147 builds the identical cell clean.
Changed
- 26.3 cell moved from MC 26.3-snapshot-7 to MC 26.3 (stable, 2026-09-15). The snapshot-exclusive
single-build pin is replaced by the ordinary closed prerelease-inclusive range
>=26.3- <26.4(Fabric) /[26.3,26.4)(NeoForge). Resourcepack_format95->97incompat.resource_format(), read from 26.3's ownresources/version.json. - fabric-api
0.156.2+26.3->0.161.0+26.3, fabric-loader0.19.3->0.19.5, ModMenu21.0.0-alpha.1->21.0.0-beta.1, NeoForge26.3.0.6-beta, ModDevGradle2.0.147.
Notes
- No source change required, and the one gate that looked dangerous is not. 26.3-rc-1
re-signatured
LivingEntity.blockUsingItemandblockedByItem(both gain a trailingboolean fullyBlocked) and changed behaviour so a fully blocked hit no longer knocks the attacker back. That is the obvious hazard for a shield mod, but ASR does not touch either method: its blocking path goes through theBLOCKS_ATTACKSdata component on the item, which rc-1 leaves alone. The snapshot-7swingbreak was already handled bycompat.swing_anim()in 1.2.1. - Only the 26.3 cells were rebuilt; every other cell keeps the version it already shipped.
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:AlTj0HVt:Pkocwq4m"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:AlTj0HVt:Pkocwq4m"
}

