-
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Potential config format:
{
"define": {
"ores": [
{
"id": "minecraft:iron_ore",
"weight": 1.0
},
{
"id": "minecraft:gold_ore",
"weight": 1.0
}
]
},
"cobbleGen": [
{
"id": "@ores", // id with the prefix '@' will make the mod try to retrieve defined block list
"weight": 2.0 // all weight + 2.0 (in this example it's 1.0 + 2.0)
}
],
"stoneGen": [
{
"id": "@ores",
"weight": -2.0 // all weight - 2.0 (in this example it's 1.0 - 2.0)
}
]
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request