Ore Stone Variants

Adds stone type-specific, normal, and dense variants for all vanilla ores; configurable.

File Details

OSV-Forge-7.10-BETA+1.18.2

  • B
  • Apr 22, 2023
  • 668.33 KB
  • 298
  • 1.18.2
  • Forge

File Name

OSV-Forge-7.10-BETA.jar

Supported Versions

  • 1.18.2

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:ore-stone-variants-287538:4501542")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

  • Fixed height provider accuracy, changing the provided "simplified" syntax for height providers. See details below
  • Fixed ambiguous display formatter codecs breaking some item settings
  • Tolerate dynamic registries in PresetWriter, fixing compatibility with some datapack-driven mods (e.g. Tectonic)

 

New syntax for declaring offset height settings:

 

// absolute

height: [ 10, 20 ]

 

// from top -20 to top -10

height: {

  top: [ -20, -10 ]

}

 

// from bottom +10 to top -20

height: [

  { bottom: 10 }

  { top: -20 }

]

 

supports top, bottom, absolute, and sea