Custom audio goes here.

Right now assets/deathreaper/sounds.json redirects every sound event of this mod onto a vanilla
sound event ("type": "event"), so the mod ships with working audio and no .ogg files of its own.

To replace one with your own audio:

  1. Drop an OGG Vorbis file in this folder, e.g. assets/deathreaper/sounds/grave_open.ogg
  2. In assets/deathreaper/sounds.json change that entry from

         "sounds": [ { "name": "minecraft:block.chest.open", "type": "event" } ]

     to

         "sounds": [ "deathreaper:grave_open" ]

No Java change is needed - the sound event ids in ModSounds stay the same.
