
[Feature Request] Add `lithostitched:wrapped_marker` DF for QoL
SettingDust opened this issue ยท 0 comments
A DF file content like below allowing use the wrapper directly
{
"type": "lithostitched:wrapped_marker"
}
Before:
{
"type": "lithostitched:wrap_density_function",
"priority": 1000,
"target_function": "minecraft:overworld/ridges",
"wrapper_function": {
"type": "minecraft:mul",
"argument1": 2,
"argument2": {
"type": "lithostitched:wrapped_marker"
}
}
}
After:
{
"type": "lithostitched:wrap_density_function",
"priority": 1000,
"target_function": "minecraft:overworld/ridges",
"wrapper_function": {
"type": "minecraft:mul",
"argument1": 2,
"argument2": "lithostitched:wrapped_marker"
}
}