promotional bannermobile promotional banner
premium banner
Adds over 50 unique ambient cave sounds to the game.

Description

πŸ”Š Expanded Cave Sounds

50 new atmospheric, sometimes haunting, cave ambience SFX β€” mixed in alongside the vanilla pool, with optional full replacement.

Minecraft Forge NeoForge Fabric Quilt


Overview

Minecraft ships with only 13 ambient.cave sounds. Spend enough hours underground and you'll know every creak and groan by heart. Expanded Cave Sounds hooks directly into the game's existing cave-mood system and lifts the rotation from 13 sounds to 63 β€” without changing when the ambience fires, how it fades in, or where it positions itself in 3D space.

Nothing is louder. Nothing is more frequent. You just hear something new the next time it plays.

Features

  • 50 new mono Ogg Vorbis tracks β€” mastered at 44.1 kHz, quality 5, for clean positional audio through OpenAL
  • Blends with vanilla by default β€” both pools rotate together; no vanilla atmosphere is lost
  • One-flag pure-expanded mode β€” flip a config boolean for expanded-only
  • Zero gameplay changes β€” same trigger cadence, same darkness/biome rules, same soundPositionOffset
  • Client-side only β€” drop it in; servers do not need it
  • Tiny footprint β€” ~3.6 MB total, a single Mixin, no runtime reflection, no per-tick polling
  • Plays nicely with immersion mods β€” Sound Physics Remastered reverb and Presence Footsteps are untouched
  • No required dependencies β€” Fabric API is not needed

How It Works

The mod does not re-implement cave ambience. It lets vanilla continue doing what it already does β€” sampling a random block in a 17Γ—17Γ—17 cube around the player each tick, incrementing a mood counter when dark enough, and dispatching minecraft:ambient.cave at a randomly-jittered offset position.

At the exact moment Minecraft calls SoundManager#play with that cave sound, a Mixin intercepts the dispatch and decides what happens:

Situation Action
Not a cave sound Pass through. Every other sound in the game is unaffected.
Cave sound, coin flip picks vanilla Pass through. Vanilla's 13 variants play as they always did.
Cave sound, coin flip picks expanded Cancel the original, dispatch one of the 50 new sounds at the same position/volume/pitch.

Because the hook is at the dispatch site rather than the upstream mood pipeline, every vanilla tuning knob β€” biome tickDelay, blockSearchExtent, soundPositionOffset, subtitle category, reverb from downstream mods β€” keeps working unchanged.

Configuration

A plain JSON config is written to .minecraft/config/expandedcavesounds.json on first launch:

{
  "playVanillaCaveSounds": true
}
Setting Value Result
playVanillaCaveSounds true Default. Fair 50/50 mix of vanilla's 13 sounds and the 50 expanded ones.
false Expanded-only. Vanilla's ambient.cave is replaced on every trigger.

Restart Minecraft after editing the file.

Compatibility

Loader Minecraft File to install Notes
Forge 47.x 1.20.1 ...-forge-1.20.1-*.jar Primary Forge target
NeoForge 47.1.x 1.20.1 ...-forge-1.20.1-*.jar NeoForge at 1.20.1 is Forge-compatible
Fabric 0.15+ 1.20.1 ...-fabric-1.20.1-*.jar Primary Fabric target
Quilt 0.22+ 1.20.1 ...-fabric-1.20.1-*.jar Loads via Quilt's Fabric compatibility layer
  • Java: JDK 17 (bundled with every standard Minecraft launcher)
  • Side: client-only β€” nothing to install on the server
  • Required mods: none. Fabric API is not a dependency.

Installation

  1. Pick the jar from the Files tab that matches your loader.
  2. Drop it into your .minecraft/mods/ folder.
  3. Launch the game and load any world.
  4. Head underground β€” the expanded rotation kicks in the first time the vanilla mood counter trips (darkness plus roughly five minutes of in-game time).

Modpack Permissions

Free to include in any modpack, public or private, monetised or not. Credit is appreciated but not required. A link back to this CurseForge page helps route feedback upstream.

FAQ

Does it work on a multiplayer server?

Yes. The mod runs entirely on the client β€” each player hears their own soundscape. Install it only on the clients that want the expanded ambience. Servers require no changes.

Does it replace the vanilla cave sounds?

Not by default. In the default configuration, vanilla's 13 sounds still play β€” the mod simply adds 50 more to the rotation. Set playVanillaCaveSounds to false if you prefer expanded-only.

Does it conflict with AmbientSounds, Dynamic Surroundings, or Sound Physics Remastered?

No. The Mixin intercepts only dispatches of minecraft:ambient.cave. Other ambient layers β€” biome ambience, reverb/DSP, weather β€” are completely untouched. Sound Physics reverb in particular works unchanged because the mod replaces the source sample, not the dispatch pipeline.

Will it change how often I hear cave sounds?

No. The vanilla mood sampler still decides when a sound plays. The mod only decides which sound that dispatch uses.

Roadmap

  • v0.2 β€” Y-band and biome-aware pools (deep dark, dripstone caves, lush caves)
  • v0.3 β€” Cloth Config screen, in-game volume slider, vanilla/expanded weight slider
  • v0.4 β€” Geometry-aware selection (tight tunnel vs cavern vs ravine)
  • v1.0 β€” Native NeoForge neoforge.mods.toml jar; 1.21.x target

Credits & License

All Rights Reserved. Sound design and programming by dylanjkl.