Configuration

Nerospace's config is deliberately small: the mod owns its base balance numbers in code, and packs tune them through six multipliers. Everything else is genuinely absolute — booleans, radii, performance caps, advanced simulation tuning and client visual preferences.

Managed by Neroland Core. The balance config lives in config/nerospace.properties and is owned by Core: reload it live with /neroland config reload (no restart), and the gameplay-balance multipliers are server-authoritative — a connected client always uses the server's values. The telemetryEnabled opt-out is the exception: it stays a personal, per-client choice a server can never force. Existing files migrate in place (the keys are unchanged). Keys read by the deeper simulation systems (atmosphere, meteors, terraformer) are documented below for reference.

Breaking change (pre-1.0): the old flat key list (oxygenMax, batteryCapacity, combustionGeneratorFePerTick, …) was removed without migration. Delete your old nerospace-common.toml and let it regenerate.

The six multipliers

All six default to 1.0 and are clamped to 0.1 – 10.0. Internally every scaled value is clamped to at least 1, so extreme settings can never zero a rate, divide by zero, or stall progression (e.g. the rocket launch cost is additionally clamped to the tank size, so a launch is always possible with a full tank).

KeyWhat it scalesBase values
oxygenDrainMultiplierHow fast oxygen is consumed: bare-lungs drain, suit tank drain, suffocation damage. >1 = harsher planets.drain 2/t · suit drain 1/check · damage 1 half-heart
oxygenCapacityMultiplierAir capacities: the player's oxygen supply and the Tier 2 suit tank.player 300 · T2 suit 600
energyRateMultiplierThe energy & storage economy: generator output, energy pipe throughput, and Nerospace's own buffer/tank capacities (Fuel Tank, pipe buffers, machine buffers, rocket fuel tanks).combustion 60 FE/t · passive 10 FE/t · energy pipe 4,000 FE/t & 8,000 FE · fluid/gas pipe 4,000 mB · fuel tank 32,000 mB · machine buffers 10k–100k FE · rocket tanks 3,000/6,000/12,000 mB
fuelCostMultiplierConsumable costs: rocket fuel per launch (clamped to tank size), airlock oxygen-gas per air unit, machine energy costs.launch 1,000/2,000/4,000 mB (T1/T2/T3) · airlock 5 mB/air · Terraformer 12 FE/block · Grinder 30 FE/t · O₂ Generator 2 FE/mB
machineSpeedMultiplierMachine working speed: grinder craft time, oxygen make/emit rate, fuel tank pump rate, airlock refill rate, fluid/gas pipe throughput, item pipe travel & extraction, Terraformer work interval.grinder 100 t/item · O₂ make 5 / emit 2 mB/t · pump 40 / 160 (3×3) mB/t · refill 20 air/check · fluid pipe 500 / gas pipe 250 mB/t · item pipe 10 t/block, pulse every 10 t · Terraformer cycle every 8 t
gravityMultiplierA global scale on every world's gravity — players, mobs, dropped items, projectiles, and falling meteors. <1 = floatier everywhere, >1 = heavier.Per-dimension defaults: Station ~0.1× · Glacira ~0.4× · Greenxertz ~0.6× · Cindara ~0.8× · Overworld & terraformed ground 1.0×

Examples: oxygenDrainMultiplier = 2.0 halves how long air lasts; machineSpeedMultiplier = 2.0 makes the grinder craft in 50 ticks and the Terraformer work twice as often; energyRateMultiplier = 0.5 halves generator output and storage, keeping the economy's shape.

Notes on extremes: at 0.1 every rate clamps to ≥1 (nothing stops working, it just gets slow); at 10.0 machine input limits (e.g. the O₂ Generator's 500 FE/t insert cap) may become the bottleneck before the multiplied rate — intended, since those caps protect grid balance.

Absolute keys

Telemetry

KeyDefaultMeaning
telemetryEnabledtrueAnonymous Nerospace-only crash reports (Sentry, EU servers, POPIA/GDPR-scrubbed — see PRIVACY.md). Set false to opt out; applies immediately on config reload.

Atmosphere

KeyDefaultRangeMeaning
atmosphereDamageEnabledtrue—Master switch: whether airless dimensions hurt unprotected players.
atmosphereSafeRadius60–32Blocks from a Rocket Launch Pad treated as a safe, pressurised zone.

Oxygen structure

KeyDefaultRangeMeaning
oxygenBubbleRadius140–32Falloff radius of a generator's breathable bubble in open/leaky space (sealed rooms fill completely regardless).
oxygenAirlockRadius30–16Radius within which a worn suit refills from a Gas Tank / Oxygen Generator holding Oxygen. 0 disables airlock refilling.

Oxygen field simulation (ADVANCED)

Simulation tuning, not balance — wrong values can break oxygen/terraforming behaviour. Leave at defaults unless debugging server performance.

KeyDefaultRangeMeaning
oxygenMaxConcentration151–15Max per-block oxygen concentration in the field.
oxygenBreathableThreshold61–15Concentration at/above which a cell is breathable.
oxygenDiffusionRate0.220–0.4Fraction of the neighbour gradient flowing into a cell per sim step.
oxygenDecayPerStep0.180–5Oxygen bled to vacuum per sim step (keeps open-air bubbles finite).
oxygenSimIntervalTicks51–100Server ticks between field relaxation passes.
oxygenMaxActiveCellsPerSource409664–65536Safety cap on simulated cells per source (TPS guard).
oxygenLeakRange164–64Max flood-fill distance from a generator for leaks/room walls.
oxygenEvaporateSeconds101–120How long oxygen lingers once unsupplied or leaking.
oxygenSyncRadius328–128Radius around a source within which the field simulates and syncs; sources with no player in range pause.

Client visuals

KeyDefaultRangeMeaning
oxygenVisualQualityFULLOFF/MINIMAL/FULLOxygen visuals: OFF (none), MINIMAL (HUD + sparse particles), FULL (+ haze tint + boundary shimmer).
oxygenParticleIntensity1.00–4Drifting-particle density (0 disables just this layer).
oxygenHazeIntensity1.00–2Haze/fog-tint alpha inside breathable air (0 disables the layer).
oxygenBoundaryIntensity1.00–2Boundary-shimmer membrane alpha (0 disables the layer).
oxygenDebugLogfalse—Verbose, non-personal oxygen/terraform logging (never player identifiers — POPIA/GDPR).

Terraformer

KeyDefaultRangeMeaning
terraformPlantsEnabledtrue—Scatter grass/flowers/saplings on converted ground.
terraformWaterEnabledtrue—Fill low/exposed cells with water.
terraformResourcesEnabledtrue—Tier-3 Terraformer seeds ores into the converted subsurface (low rate).
terraformResourceOresNerospace oreslistOre block ids the Tier-3 Terraformer may seed.
terraformMaxColumnsPerTick481–4096Hard per-tick work cap regardless of tier (TPS guard).
terraformForceLoadChunksfalse—Force-load a bounded arc around the working frontier (TPS footgun — off by default).
terraformMaxForcedChunks160–256Guard on force-loaded chunks.

Meteor events

Tunables for the meteor world-event (see Meteor Events). Defaults give roughly one natural meteor every 2–3 play-hours per active dimension; the Meteor Caller works regardless.

KeyDefaultRangeMeaning
meteorNaturalSpawntrue—Whether meteors fall naturally near players.
meteorAvgIntervalSeconds900060–1,000,000Average seconds between natural impacts (randomised 0.66×–1.33×).
meteorWarningSeconds300–600Warning window a meteor is tracked as incoming before it falls.
meteorMinDistance2000–2,000Min horizontal distance from the anchor player a meteor targets.
meteorMaxDistance50016–4,000Max horizontal distance a meteor targets.
meteorCraterRadius31–8Radius of the crater carved (kept modest to avoid griefing builds).
meteorMaxActiveSites41–64Max simultaneous scheduled/falling meteors per dimension.
meteorLootBonusRolls30–32Weighted bonus loot rolls on top of the guaranteed alien fragments.
meteorDebugLogfalse—Verbose, non-personal meteor logging (dimension + coordinates only — POPIA/GDPR).

Quarry

KeyDefaultRangeMeaning
quarryMaxSide644–64Max side length (blocks) of a quarry's landmark claim; tiers may cap lower.
quarryFrameDecayTicks60020–24,000Base delay before an orphaned frame block crumbles and drops its casing. Each block waits base + rand(base×7) ticks, so the default spreads the ring's decay over ~30 s – 4 min.

Alien villages

KeyDefaultMeaning
alienRaidsEnabledtrueWhether claimed alien villages are raided by hostile mobs at night. Set false to opt out; applies on config reload.

Chat

KeyDefaultMeaning
welcomeMessageEnabledtrueWhether the two-line Nerospace welcome (the Star Guide Book prompt and the feedback link) is sent to a player when they join the world. Set false to join silently; applies on config reload. Server-authoritative — the server sends the message, so the server decides.

Removed keys (for modpack authors migrating)

Folded into multipliers: atmosphereDamage, oxygenMax, oxygenDrainPerTick, oxygenSuitDrain, oxygenSuitT2Max, oxygenAirlockRefillPerCheck, oxygenAirlockMbPerAir, terraformEnergyPerBlock, terraformWorkIntervalTicks, energyPipeCapacity, energyPipeThroughput, fluidPipeCapacity, fluidPipeThroughput, gasPipeCapacity, gasPipeThroughput, itemPipeTicksPerBlock, itemPipeExtractAmount, itemPipeExtractPeriod, batteryCapacity, fluidTankCapacity, gasTankCapacity, combustionGeneratorFePerTick, passiveGeneratorFePerTick.

Removed outright: logDirtBlock, magicNumber, magicNumberIntroduction, items (template leftovers), oxygenSealedRoomMax (dead — the oxygen field replaced the sealed-room flood-fill), terraformPlantChance, terraformResourceChance (internalised; the booleans above still gate the features).

Search across every Nero mod wiki.