Unsalted
- Id:
moderner_beta:unsalted
- Inputs: none
- Uses seed: no
- Added in: 3.0.0
The Unsalted layer is a wrapper layer that causes the RNG of the wrapped layer to not be salted with the world seed. This is used for accurately reproducing layer pipelines of older versions of Minecraft, including replicating accurate shapes of mutated regions for pre-1.13 worlds.
Properties
layer
- Type:
layer
- Default: required
- Description: The layer to be wrapped. Note that this layer is not referred by ID and is instead inlined.
- Type:
skipAmount
- Type:
int
- Default: required
- Description: The amount of times to skip the RNG.
- Type:
Example
json
{
"id": "example",
"type": "moderner_beta:pre_skip_random",
"skipAmount": 1,
"layer": {
"id": "the id here doesn't matter; the id of the wrapper layer is used instead",
"type": "moderner_beta:random_biome",
"seed": 2500,
"biomes": [
"minecraft:plains",
"minecraft:forest",
"minecraft:desert"
]
}
}