Tags
Creators
Details
All versions
26.3-1.4.0
Release
SpawnGuard 26.3-1.4.0 [NeoForge]5 days ago 10
Compatibility
Minecraft: Java Edition
26.3
Platform
NeoForge
Supported environments
Client and server
Changes
[1.4.0] - 2026-09-21
Changed
- BREAKING: Updated to Minecraft 26.3 (requires Java 25).
- BREAKING: Brewing recipes are now data-driven. Minecraft 26.3 removed the runtime
PotionBrewingregistry and turned brewing into a regularminecraft:brewingrecipe type, so both loaders now shipdata/spawnguard/recipe/brewing/*.jsonfromcommoninstead of registering mixes in code. The recipes themselves are unchanged (Weakness + Blaze Powder, then + Redstone). - Updated Fabric API to 0.161.0+26.3, Fabric Loader to 0.19.5, NeoForge to 26.3.0.7-beta, Cloth Config to 26.3.158, ModMenu to 21.0.0-beta.1.
- Updated Fabric Loom to 1.17.21, NeoForge moddev to 2.0.147, Gradle wrapper to 9.6.0.
fabric.mod.jsondependency bounds now track the built version (Minecraft >=26.3, Cloth Config >=26.3.0).
Fixed
pack.mcmetadeclared pack format 101, which was Minecraft 26.1's data pack format and matched neither format of the targeted version. It now declares97–121, covering both the resource pack format (97) and the data pack format (121) of 26.3 — the mod ships assets and, as of this release, data.- NeoForge: replaced the
logoFileproperty deprecated in 26.3 withiconFile.
Removed
- Fabric:
FabricPotionBrewingBuilderregistration (the Fabric API hook was removed along with the vanilla registry). - NeoForge:
RegisterBrewingRecipesEventsubscriber.
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:XTGFtR67:nrrUGCml"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:XTGFtR67:nrrUGCml"
}

