Skip to content

Introduction

There are 2 config files for CobbleGen:

  • cobblegen.json5 - Where you define the generators
  • cobblegen-meta.json5 - To configure CobbleGen’s behaviour

Every config file must be wrapped by {} otherwise it won’t be valid, for example:

{
"cobbleGen": [
{
"id": "minecraft:cobblestone",
"weight": 100.0
}
],
// Be sure to define the config format version to prevent breakage in the future
"formatVersion": "1.1"
}
  • json-5.com - Online JSON(5) validation and formatter, in case you don’t want to install any software