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
- 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