-
|
I'm trying to make Andesite, Granite, Diorite, Calcite, Tuff, End Stone and Netherrack generators. |
Beta Was this translation helpful? Give feedback.
Answered by
null2264
Nov 20, 2022
Replies: 1 comment 1 reply
-
|
To add new custom generator variant (with cobbleGen method), you add it inside of "cobbleGen" "customGen": {
"cobbleGen": {
"minecraft:end_stone": [
{
"id": "minecraft:end_stone",
"weight": 100.0,
}
]
}
},
"customGen": {
"cobbleGen": {
"minecraft:granite": [
{
"id": "minecraft:granite",
"weight": 100.0,
}
]
}
},You do this: "customGen": {
"cobbleGen": {
"minecraft:end_stone": [
{
"id": "minecraft:end_stone",
"weight": 100.0,
}
],
"minecraft:granite": [
{
"id": "minecraft:granite",
"weight": 100.0,
}
]
}
}, |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Pirogiran
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To add new custom generator variant (with cobbleGen method), you add it inside of "cobbleGen"
So instead of doing this:
You do this: