Tags
Creators
Details
All versions
1.1.1-neoforge-26.2
Release
Nerospace 1.1.1 - NeoForge 26.23 hours ago 3
Compatibility
Minecraft: Java Edition
26.2
Platform
NeoForge
Supported environments
Client and server
Changes
Gas interop with NeroTech through the Universal Pipe, plus three crash-report fixes. Pair it with NeroTech 0.2.1-beta.1 so both mods use the same oxygen.
Fixed
- Universal Pipe gas layer now works with NeroTech and every Neroland Core gas (Neroland/nerotech#9).
The gas buffer is Neroland Core's id-keyed store instead of Nerospace's oxygen-only enum, so a line
can carry hydrogen and any other Neroland gas. The pipe now finds a neighbour's gas storage through
Core's shared
nerolandcore:gascapability first, then through Nerospace's ownnerospace:gas. NeroTech's Electrolyzer, Chemical Processor and Gas Turbine now connect and exchange gas, and a Core Gas Tank holding a gas other than oxygen no longer looks empty to the pipe. Per-face side-config gating on Nerospace machines is unchanged, because those machines are only registered onnerospace:gas. - The pipe is now also exposed on
nerolandcore:gason NeoForge, Forge and Fabric, so NeroTech machines can push into it and pull from it directly. The existingnerospace:gasexposure is kept. - One oxygen across the ecosystem:
nerotech:oxygen(NeroTech's old id) is read asnerospace:oxygenby the pipe and by Nerospace's oxygen consumers, so oxygen that NeroTech stored in a Core Gas Tank feeds airlocks and the Launch Controller. A tank that still holds the old id keeps accepting oxygen. - Gas stream colour follows the carried gas: cyan for oxygen, pale blue for hydrogen, grey for anything else. The empty-hand pipe readout names the gas.
- Existing pipes keep their gas: the old
Gassave value ("oxygen"/"empty") is migrated to the full id on load. - Gravity no longer loads chunks from the server tick. The terraformed-ground check read the chunk
with a blocking load. For an entity on a chunk edge that nested load ran other chunk work mid-tick and,
with C2ME, crashed the entity-section manager (
ConcurrentModificationException). Gravity now reads only already-loaded chunks and skips entities whose chunk is not ready yet. - JEI Fuel Refinery page no longer fails on NeoForge. When JEI starts before the rocket fuel's registry data is ready, the output slot shows the Rocket Fuel Bucket instead of throwing "Components not bound yet" and dropping the whole category.
- Crash reporting ignores errors Nerospace did not cause: exceptions thrown inside another mod's own code (for example a recipe viewer building a Nerospace mob while its own config is not loaded), and vanilla's "Invalid block entity" message for saved data whose block was replaced. Nothing else changes about what is sent.
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:MZjgyY44:T3BLLxv5"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:MZjgyY44:T3BLLxv5"
}

