CobbleGen (CobbleGen)
一个 Minecraft 模组,允许你自定义随机化圆石(玄武岩和石头)发生器。

CobbleGen
CobbleGen 是一个 Minecraft 模组,允许你自定义/随机化圆石(玄武岩和石头)发生器。
---
关于
CobbleGen 是一个 Minecraft 模组,允许你自定义/随机化圆石(玄武岩和石头)发生器。
从版本5.0开始,CobbleGen 正式支持 Fabric 和 Forge 类型的模组加载器。由于模组的设计方式,该模组应该仍然在未来的 Minecraft 版本上工作,只是不要期望集成(如 Create 模组集成、REI/EMI/JEI 集成)能正常工作。[点击此处查看详细的版本跟踪](
Fabric JAR 应该在 Quilt 上工作,该模组设计为尽可能只依赖于原版代码。
Forge JAR 也应该在 NeoForge(仅限1.20.1)上工作。从 v5.2 开始将停止对 Forge(1.20.2+)的支持,请考虑迁移到 NeoForge!
功能
- 支持 Fabric/Quilt 和 NeoForge/Forge
- REI/EMI/JEI 集成
- 可自定义的圆石、石头和玄武岩发生器
- 使用可自定义的权重值随机生成方块
- 可自定义的修改器,为你的玩家带来更多挑战
- 维度白名单/黑名单
- Y-轴限制器
- 支持标签(使用 `#mod_id:tag_id` 代替放置 `mod_id:block_id`)
- 支持 Create 模组
- 管道/泵支持
- 在 Fabric/Quilt 上支持 Porting Lib 兼容性(修复石灰岩和火山灰生成器)
- 高级自定义发生器(自定义液体交互)
- [面向开发人员的液体交互 API](
更多功能即将推出!
#### 计划功能
- 修改器位置(不再局限于“在生成方块下方”)
- 为模组包开发人员提供 Web 应用程序,以便轻松配置发生器
- 生物群系白名单/黑名单
用法
这个模组主要是服务端的,但建议客户端也安装上以支持 REI/EMI/JEI。
开箱即用时,该模组并不会做太多事情,它会生成默认配置,其中 cobblegen 会在深层板岩上生成,当生成方块下方有基岩时会生成随机矿石等。要充分利用该模组,你需要自己进行配置。
配置
该模组为你提供了三层配置:默认、自定义和高级。
- 默认:最基本的修改,允许你替换原版生成的方块。例如,告诉生成器生成钻石块而不是圆石。
- 自定义:允许你修改生成器的修改器,类似于需要有灵魂沙土才能生成玄武岩,但适用于任何类型的生成器。例如,告诉生成器在生成方块上方生成矿石。
- 高级:允许你修改液体交互,你可以用它来使用模组液体来生成方块。例如,告诉生成器如果蜂蜜液体接触到牛奶液体,则生成钻石块。
配置文件位于 `config/cobblegen.json5`,格式应该很简单:
格式
默认生成器格式
json5
{
"id":"mod_id:block_id",
"weight":95.5,
"dimensions":[
"mod_id:dimension_id",
"mod_id:dimension_id"
],
"excludedDimensions":[
"mod_id:dimension_id",
"mod_id:dimension_id"
],
"minY":0,
"maxY":69
}
自定义生成器格式
json5
{
"generatorType (cobbleGen/stoneGen/basaltGen)":{
"mod_id:modifier_block_id":[
{
"id":"mod_id:block_id",
"weight":95.5,
"dimensions":[
"mod_id:dimension_id",
"mod_id:dimension_id"
],
"excludedDimensions":[
"mod_id:dimension_id",
"mod_id:dimension_id"
],
"minY":0,
"maxY":69
}
]
}
}
说明
- 除了 `id` 和 `weight` 外,其他都是可选的,如果你不需要,可以将它们删除,例如:
json
{
"id": "minecraft:bedrock",
"weight": 1.0, // 如你所见,这里只有 id 和 weight
}
- 自定义生成器只有:
- `generatorType`:需要替换为 cobbleGen、stoneGen 或 basaltGen
- `mod_id:modifier_block_id`:需要替换为你选择的修改器方块 id(例如 `minecraft:bedrock`)
- `id`:生成方块的方块 id(例如 `minecraft:iron_ore`)
- `weight`:生成方块的权重(数字越大=越常见)
- `dimensions`:方块可以生成的维度 id 集合(它是一个数组!,例如 `["minecraft:the_end", "minecraft:nether"]`)
- `excludedDimensions`:方块无法生成的维度 id 集合(它是一个数组!,例如 `["minecraft:the_end", "minecraft:nether"]`)
- `minY`:该方块可以生成的最低高度(例如 `0` 表示只能从高度限制到 Y=0(含)生成)
- `maxY`:该方块可以生成的最高高度(例如 `0` 表示只能从基岩层到 Y=0(含)生成)
默认生成器示例(圆石/石头/玄武岩)
json5
{
// 圆石发生器
// { "id": "mod_id:block_id", "weight": 95.5 }
"cobbleGen": [
{
"id": "minecraft:cobbled_deepslate",
"weight": 100.0,
"maxY": 0
}
],
// 石头发生器
// { "id": "mod_id:block_id", "weight": 95.5 }
"stoneGen": [
{
"id": "minecraft:stone",
"weight": 100.0
}
],
// 玄武岩发生器
// { "id": "mod_id:block_id", "weight": 95.5 }
"basaltGen": [
{
"id": "minecraft:basalt",
"weight": 100.0
}
]
}
自定义生成器示例(带修改器)
json5
{
// 自定义生成器
//
"customGen": {
// 圆石发生器
// { "id": "mod_id:block_id", "weight": 95.5 }
"cobbleGen": {
"minecraft:bedrock": [
{
"id": "minecraft:emerald_ore",
"weight": 2.0
},
{
"id": "minecraft:diamond_ore",
"weight": 5.0
},
{
"id": "minecraft:lapis_ore",
"weight": 8.0
},
{
"id": "minecraft:gold_ore",
"weight": 10.0
},
{
"id": "minecraft:iron_ore",
"weight": 15.0
},
{
"id": "minecraft:coal_ore",
"weight": 20.0
},
{
"id": "minecraft:cobblestone",
"weight": 40.0
}
]
},
// 石头发生器
// { "id": "mod_id:block_id", "weight": 95.5 }
"stoneGen": {
"minecraft:bedrock": [
{
"id": "minecraft:stone",
"weight": 40.0
},
{
"id": "minecraft:diorite",
"weight": 20.0
},
{
"id": "minecraft:andesite",
"weight": 20.0
},
{
"id": "minecraft:granite",
"weight": 20.0
}
]
},
// 玄武岩发生器
// { "id": "mod_id:block_id", "weight": 95.5 }
"basaltGen": {
"minecraft:bedrock": [
{
"id": "minecraft:end_stone",
"weight": 100.0,
"dimensions": [
"minecraft:the_end"
]
},
{
"id": "minecraft:blackstone",
"weight": 100.0,
"excludedDimensions": [
"minecraft:the_end"
]
}
]
}
}
}
高级自定义生成器(自定义液体交互)示例
json5
{
// 高级自定义生成器(自定义液体交互)
// 基本格式:
// "advanced": {
"advanced": {
// 为此项使用静态版本的液体,
// - "minecraft:lava" 而不是 "minecraft:flowing_lava"
// - "milk:still_milk" 而不是 "milk:flowing_milk"
// 液体的 ID 如何构建取决于相应模组创建者的做法。
"minecraft:lava": {
// 复制 Minecraft 圆石和石头发生器
// 这个可以是流动或静态版本的液体,如果静态不起作用,请尝试流动。
"minecraft:water": {
// 石头发生器
"resultsFromTop": {
"*": [ // 通配符,接受任何方块作为修改器
{
"id": "minecraft:stone",
"weight": 100.0,
}
]
},
// 圆石发生器
"results": {
"*": [ // 通配符,接受任何方块作为修改器
{
"id": "minecraft:cobblestone",
"weight": 100.0,
}
]
}
},
// 复制 Minecraft 玄武岩发生器
"b:minecraft:blue_ice": {
"results": {
"minecraft:soul_soil": [
{
"id": "minecraft:basalt",
"weight": 100.0,
}
]
}
},
// 自定义安山岩发生器,使用玄武岩发生
截图:
[FORGE MC1.19.2+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FORGE MC1.19.4+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[NEOFORGE MC1.20.3+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.21.1+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[NEOFORGE MC1.21.4+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.21.4+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[NEOFORGE MC1.21.1+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[NEOFORGE MC1.21.5] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FORGE MC1.20.1+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FORGE MC1.18.2] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[NEOFORGE MC1.20.4] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[NEOFORGE MC1.20.6+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.20.6+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.19.2+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.19.4+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.20.4+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.18.2] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.21.5] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.20.1+] v5.4.5-BETA
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FORGE MC1.16.5] v5.4.5-BETA (LITE)
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FABRIC MC1.16.5] v5.4.5-BETA (LITE)
- [Meta (Experimental)] Added `lenientModifier` option. When enabled it allows player to place the modifier block on
other places other than underneath the generated block.
To use this option you need to set `enableExperimentalFeatures` in `config/cobblegen-meta.json5` to `true`.
[FORGE MC1.19.2+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[NEOFORGE MC1.21.1+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FORGE MC1.19.4+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[NEOFORGE MC1.20.3+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[NEOFORGE MC1.21.4+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.21.4+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.21.1+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[NEOFORGE MC1.20.4] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FORGE MC1.18.2] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FORGE MC1.20.1+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[NEOFORGE MC1.21.5] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[NEOFORGE MC1.20.6+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.20.6+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.19.2+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.20.4+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.19.4+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FORGE MC1.16.5] v5.4.4-BETA (LITE)
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.18.2] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.20.1+] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.21.5] v5.4.4-BETA
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[FABRIC MC1.16.5] v5.4.4-BETA (LITE)
- [Advanced] Fix obsidian generation not being registered when `results` is not defined
### Other
- Add tests for generators with modifier and advanced generator (obsidian only for now)
[NEOFORGE MC1.20.3+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.21.4+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.21.5] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.20.6+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FORGE MC1.19.2+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FORGE MC1.19.4+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FORGE MC1.18.2] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[NEOFORGE MC1.21.4+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[NEOFORGE MC1.21.5] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.20.1+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.21.1+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.19.4+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FORGE MC1.20.1+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.19.2+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[NEOFORGE MC1.20.4] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.18.2] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[NEOFORGE MC1.21.1+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[NEOFORGE MC1.20.6+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.20.4+] v5.4.3-BETA
- Fix server crashed trying to bootstrap Manifold
[FORGE MC1.16.5] v5.4.3-BETA (LITE)
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.16.5] v5.4.3-BETA (LITE)
- Fix server crashed trying to bootstrap Manifold
[FABRIC MC1.21.5] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FORGE MC1.20.1+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FORGE MC1.19.2+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FORGE MC1.19.4+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.19.2+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FORGE MC1.18.2] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.20.1+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.20.6+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.18.2] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[NEOFORGE MC1.21.4+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.20.4+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.21.4+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.21.1+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.19.4+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[NEOFORGE MC1.20.3+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[NEOFORGE MC1.21.5] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[NEOFORGE MC1.20.4] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[NEOFORGE MC1.20.6+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[NEOFORGE MC1.21.1+] v5.4.2-BETA
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FORGE MC1.16.5] v5.4.2-BETA (LITE)
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.16.5] v5.4.2-BETA (LITE)
- Fix networking
- Fix server still try to sync recipe with client when `enableRecipeViewer` is set to false
[FABRIC MC1.18.2] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.20.1+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[NEOFORGE MC1.20.3+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.21.4+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FORGE MC1.19.4+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[NEOFORGE MC1.20.6+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FORGE MC1.20.1+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FORGE MC1.18.2] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.21.1+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.19.4+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.19.2+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[NEOFORGE MC1.21.4+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[NEOFORGE MC1.21.1+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FORGE MC1.19.2+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[NEOFORGE MC1.21.5] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.21.5] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[NEOFORGE MC1.20.4] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.20.6+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.20.4+] v5.4.1-BETA
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FORGE MC1.16.5] v5.4.1-BETA (LITE)
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[FABRIC MC1.16.5] v5.4.1-BETA (LITE)
- Fix crashes when being loaded alongside unsupported Create mod
- Fix `cobblegen-meta.create.loadIntegration = false` didn't stop CobbleGen from trying to mixin Create mod
- [NeoForge] Fix Create support
[NEOFORGE MC1.20.3+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.19.2+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FORGE MC1.18.2]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FORGE MC1.20.1+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.21.1+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[NEOFORGE MC1.21.4+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.20.4+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[NEOFORGE MC1.21.5]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.18.2]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FORGE MC1.19.4+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.21.4+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FORGE MC1.19.2+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[NEOFORGE MC1.20.4]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.19.4+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[NEOFORGE MC1.21.1+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[NEOFORGE MC1.20.6+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.20.1+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.21.5]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.20.6+]5.4.0-BETA
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FORGE MC1.16.5]5.4.0-BETA (LITE)
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[FABRIC MC1.16.5]5.4.0-BETA (LITE)
- Support for MC 1.21.5
- Add GameTest
- Add CI to test the mod using HeadlessMC
### Other
- Completely rework the project to use Manifold's preprocessor instead of ReplayMod's preprocessor
- Also start splitting the project into several modules
[NEOFORGE MC1.21.2+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.21.2+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[NEOFORGE MC1.21+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.21+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[NEOFORGE MC1.20.5+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.20.5+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[NEOFORGE MC1.20.4] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[NEOFORGE MC1.20.2+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.20.2+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FORGE MC1.20+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.20+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FORGE MC1.19.3+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.19.3+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FORGE MC1.19+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.19+] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FORGE MC1.18.2] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.18.2] v5.3.16-BETA
- Fix CobbleGen generating empty config instead of default config
[FORGE MC1.16.5] v5.3.16-BETA (LITE)
- Fix CobbleGen generating empty config instead of default config
[FABRIC MC1.16.5] v5.3.16-BETA (LITE)
- Fix CobbleGen generating empty config instead of default config
[NEOFORGE MC1.21.2+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.21.2+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[NEOFORGE MC1.21+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.21+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[NEOFORGE MC1.20.5+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.20.5+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[NEOFORGE MC1.20.4] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[NEOFORGE MC1.20.2+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.20.2+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FORGE MC1.20+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.20+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FORGE MC1.19.3+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.19.3+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FORGE MC1.19+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.19+] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FORGE MC1.18.2] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.18.2] v5.3.15-BETA
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FORGE MC1.16.5] v5.3.15-BETA (LITE)
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[FABRIC MC1.16.5] v5.3.15-BETA (LITE)
- Fix crashes due to MC breaking changes in MC 1.21.2 and newer
[NEOFORGE MC1.21.2+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.21.2+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[NEOFORGE MC1.21+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.21+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[NEOFORGE MC1.20.5+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.20.5+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[NEOFORGE MC1.20.4] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[NEOFORGE MC1.20.2+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.20.2+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FORGE MC1.20+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.20+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FORGE MC1.19.3+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.19.3+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FORGE MC1.19+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.19+] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FORGE MC1.18.2] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.18.2] v5.3.14-BETA
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FORGE MC1.16.5] v5.3.14-BETA (LITE)
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[FABRIC MC1.16.5] v5.3.14-BETA (LITE)
- Fix Create integration for Patch I and J
### Other
- Update gradle to v8.11.1
- Update archloom to v1.9
- Update me.modmuss50.mod-publish-plugin to v0.8.1
- Update com.gradleup.shadow to v8.3.5
[NEOFORGE MC1.21.2+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.21.2+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[NEOFORGE MC1.21+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.21+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[NEOFORGE MC1.20.5+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.20.5+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[NEOFORGE MC1.20.4] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[NEOFORGE MC1.20.2+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.20.2+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FORGE MC1.20+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.20+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FORGE MC1.19.3+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.19.3+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FORGE MC1.19+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.19+] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FORGE MC1.18.2] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.18.2] v5.3.13-BETA
- Re added support for MC 1.19.3-1.19.4
[FORGE MC1.16.5] v5.3.13-BETA (LITE)
- Re added support for MC 1.19.3-1.19.4
[FABRIC MC1.16.5] v5.3.13-BETA (LITE)
- Re added support for MC 1.19.3-1.19.4
[NEOFORGE MC1.21.2+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.21.2+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[NEOFORGE MC1.21+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.21+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[NEOFORGE MC1.20.5+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.20.5+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[NEOFORGE MC1.20.4] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[NEOFORGE MC1.20.2+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.20.2+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FORGE MC1.20+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.20+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FORGE MC1.19+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.19+] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FORGE MC1.18.2] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.18.2] v5.3.12-BETA
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FORGE MC1.16.5] v5.3.12-BETA (LITE)
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[FABRIC MC1.16.5] v5.3.12-BETA (LITE)
- Fixed REI integration due to API breaking changes in MC 1.21.2 or newer
- Adjust JEI integration due to deprecations in JEI 19 or newer
- Fixed issues with sending packet on NeoForge caused by Network Refactor
[NEOFORGE MC1.21.2+] v5.3.11-BETA
[FABRIC MC1.21.2+] v5.3.11-BETA
[NEOFORGE MC1.21+] v5.3.11-BETA
[FABRIC MC1.21+] v5.3.11-BETA
[NEOFORGE MC1.20.5+] v5.3.11-BETA
[FABRIC MC1.20.5+] v5.3.11-BETA
[NEOFORGE MC1.20.2+] v5.3.11-BETA
[FABRIC MC1.20.2+] v5.3.11-BETA
[FORGE MC1.20+] v5.3.11-BETA
[FABRIC MC1.20+] v5.3.11-BETA
[FORGE MC1.19+] v5.3.11-BETA
[FABRIC MC1.19+] v5.3.11-BETA
[FORGE MC1.18.2] v5.3.11-BETA
[FABRIC MC1.18.2] v5.3.11-BETA
[FORGE MC1.16.5] v5.3.11-BETA (LITE)
[FABRIC MC1.16.5] v5.3.11-BETA (LITE)
[NEOFORGE MC1.21+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FABRIC MC1.21+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[NEOFORGE MC1.20.5+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FABRIC MC1.20.5+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[NEOFORGE MC1.20.2+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FABRIC MC1.20.2+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FORGE MC1.20+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FABRIC MC1.20+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FORGE MC1.19+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FABRIC MC1.19+] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FORGE MC1.18.2] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FABRIC MC1.18.2] v5.3.10-BETA
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FORGE MC1.16.5] v5.3.10-BETA (LITE)
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[FABRIC MC1.16.5] v5.3.10-BETA (LITE)
- Force config to generate when the game is loaded instead of waiting for player to load a world
- Added experimental feature: Biome filter (`biomes` and `excludedBiomes`)
Similar to `dimensions` and `excludedDimensions`, it lets to you to control on which biome a block can or cannot generate. Change `enableExperimentalFeatures` in `cobblegen-meta.json5` to test this feature.
[NEOFORGE MC1.21+] v5.3.9-BETA
[FABRIC MC1.21+] v5.3.9-BETA
[NEOFORGE MC1.20.5+] v5.3.9-BETA
[FABRIC MC1.20.5+] v5.3.9-BETA
[NEOFORGE MC1.20.2+] v5.3.9-BETA
[FABRIC MC1.20.2+] v5.3.9-BETA
[FORGE MC1.20+] v5.3.9-BETA
[FABRIC MC1.20+] v5.3.9-BETA
[FORGE MC1.19+] v5.3.9-BETA
[FABRIC MC1.19+] v5.3.9-BETA
[FORGE MC1.18.2] v5.3.9-BETA
[FABRIC MC1.18.2] v5.3.9-BETA
[FORGE MC1.16.5] v5.3.9-BETA (LITE)
[FABRIC MC1.16.5] v5.3.9-BETA (LITE)
[NEOFORGE MC1.21] v5.3.8-BETA
[FABRIC MC1.21] v5.3.8-BETA
[NEOFORGE MC1.20.5+] v5.3.8-BETA
[FABRIC MC1.20.5+] v5.3.8-BETA
[NEOFORGE MC1.20.2+] v5.3.8-BETA
[FABRIC MC1.20.2+] v5.3.8-BETA
[FORGE MC1.20+] v5.3.8-BETA
[FABRIC MC1.20+] v5.3.8-BETA
[FORGE MC1.19+] v5.3.8-BETA
[FABRIC MC1.19+] v5.3.8-BETA
[FORGE MC1.18.2] v5.3.8-BETA
[FABRIC MC1.18.2] v5.3.8-BETA
[FORGE MC1.16.5] v5.3.8-BETA (LITE)
[FABRIC MC1.16.5] v5.3.8-BETA (LITE)
[NEOFORGE MC1.21] v5.3.7-BETA
[FABRIC MC1.21] v5.3.7-BETA
[NEOFORGE MC1.20.5+] v5.3.7-BETA
[FABRIC MC1.20.5+] v5.3.7-BETA
[NEOFORGE MC1.20.2+] v5.3.7-BETA
[FABRIC MC1.20.2+] v5.3.7-BETA
[FORGE MC1.20+] v5.3.7-BETA
[FABRIC MC1.20+] v5.3.7-BETA
[FORGE MC1.19+] v5.3.7-BETA
[FABRIC MC1.19+] v5.3.7-BETA
[FORGE MC1.18.2] v5.3.7-BETA
[FABRIC MC1.18.2] v5.3.7-BETA
[FORGE MC1.16.5] v5.3.7-BETA (LITE)
[FABRIC MC1.16.5] v5.3.7-BETA (LITE)
[NEOFORGE MC1.20.5+] v5.3.6-BETA
[FABRIC MC1.20.5+] v5.3.6-BETA
[NEOFORGE MC1.20.2+] v5.3.6-BETA
[FABRIC MC1.20.2+] v5.3.6-BETA
[FORGE MC1.20+] v5.3.6-BETA
[FABRIC MC1.20+] v5.3.6-BETA
[FORGE MC1.19+] v5.3.6-BETA
[FABRIC MC1.19+] v5.3.6-BETA
[FORGE MC1.18.2] v5.3.6-BETA
[FABRIC MC1.18.2] v5.3.6-BETA
[FORGE MC1.16.5] v5.3.6-BETA (LITE)
[FABRIC MC1.16.5] v5.3.6-BETA (LITE)
[NEOFORGE MC1.20.5] v5.3.5-BETA
[FABRIC MC1.20.5] v5.3.5-BETA
[NEOFORGE MC1.20.2+] v5.3.5-BETA
[FABRIC MC1.20.2+] v5.3.5-BETA
[FORGE MC1.20+] v5.3.5-BETA
[FABRIC MC1.20+] v5.3.5-BETA
[FORGE MC1.19+] v5.3.5-BETA
[FABRIC MC1.19+] v5.3.5-BETA
[FORGE MC1.18.2] v5.3.5-BETA
[FABRIC MC1.18.2] v5.3.5-BETA
[FORGE MC1.16.5] v5.3.5-BETA (LITE)
[FABRIC MC1.16.5] v5.3.5-BETA (LITE)
[NEOFORGE MC1.20.5] v5.3.4-BETA
[FABRIC MC1.20.5] v5.3.4-BETA
[NEOFORGE MC1.20.2+] v5.3.4-BETA
[FABRIC MC1.20.2+] v5.3.4-BETA
[FORGE MC1.20+] v5.3.4-BETA
[FABRIC MC1.20+] v5.3.4-BETA
[FORGE MC1.19+] v5.3.4-BETA
[FABRIC MC1.19+] v5.3.4-BETA
[FORGE MC1.18.2] v5.3.4-BETA
[FABRIC MC1.18.2] v5.3.4-BETA
[FORGE MC1.16.5] v5.3.4-BETA (LITE)
[FABRIC MC1.16.5] v5.3.4-BETA (LITE)
[FABRIC MC1.20.5] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[NEOFORGE MC1.20.2+] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FABRIC MC1.20.2+] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FORGE MC1.20+] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FABRIC MC1.20+] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FORGE MC1.19+] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FABRIC MC1.19+] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FORGE MC1.18.2] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FABRIC MC1.18.2] v5.3.3-BETA
- [1.18.2] Fix crash related to Log4J
[FORGE MC1.16.5] v5.3.3-BETA (LITE)
- [1.18.2] Fix crash related to Log4J
[FABRIC MC1.16.5] v5.3.3-BETA (LITE)
- [1.18.2] Fix crash related to Log4J
[FABRIC MC1.20.5] v5.3.2-BETA
[NEOFORGE MC1.20.2+] v5.3.2-BETA
[FABRIC MC1.20.2+] v5.3.2-BETA
[FORGE MC1.20+] v5.3.2-BETA
[FABRIC MC1.20+] v5.3.2-BETA
[FORGE MC1.19+] v5.3.2-BETA
[FABRIC MC1.19+] v5.3.2-BETA
[FORGE MC1.18.2] v5.3.2-BETA
[FABRIC MC1.18.2] v5.3.2-BETA
[FORGE MC1.16.5] v5.3.2-BETA (LITE)
[FABRIC MC1.16.5] v5.3.2-BETA (LITE)
[FABRIC MC1.20.5] v5.3.1-BETA
[NEOFORGE MC1.20.2+] v5.3.1-BETA
[FABRIC MC1.20.2+] v5.3.1-BETA
[FORGE MC1.20+] v5.3.1-BETA
[FABRIC MC1.20+] v5.3.1-BETA
[FORGE MC1.19+] v5.3.1-BETA
[FABRIC MC1.19+] v5.3.1-BETA
[FORGE MC1.18.2] v5.3.1-BETA
[FABRIC MC1.18.2] v5.3.1-BETA
[FORGE MC1.16.5] v5.3.1-BETA (LITE)
[FABRIC MC1.16.5] v5.3.1-BETA (LITE)
[FABRIC MC1.20.5] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[NEOFORGE MC1.20.2+] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FABRIC MC1.20.2+] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FORGE MC1.20+] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FABRIC MC1.20+] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FORGE MC1.19+] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FABRIC MC1.19+] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FORGE MC1.18.2] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FABRIC MC1.18.2] v5.3.0-BETA
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FORGE MC1.16.5] v5.3.0-BETA (LITE)
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[FABRIC MC1.16.5] v5.3.0-BETA (LITE)
- Added initial support for 1.20.5 (might be a bit buggy)
- Fixed crash due to PortingLib's Fake Player removal
[NEOFORGE MC1.20.2] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FORGE MC1.20.2] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FABRIC MC1.20.2] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FORGE MC1.20+] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FABRIC MC1.20+] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FORGE MC1.19.3+] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FABRIC MC1.19.3+] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FORGE MC1.19+] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FABRIC MC1.19+] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FORGE MC1.18.2] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FABRIC MC1.18.2] v5.2.4-BETA
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FORGE MC1.16.5] v5.2.4-BETA (LITE)
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[FABRIC MC1.16.5] v5.2.4-BETA (LITE)
- Adjust reload meta command permission
- Add option to disable debug log to reduce log spam
[NEOFORGE MC1.20.2] v5.2.3-BETA
[FORGE MC1.20.2] v5.2.3-BETA
[FABRIC MC1.20.2] v5.2.3-BETA
[FORGE MC1.20+] v5.2.3-BETA
[FABRIC MC1.20+] v5.2.3-BETA
[FORGE MC1.19.3+] v5.2.3-BETA
[FABRIC MC1.19.3+] v5.2.3-BETA
[FORGE MC1.19+] v5.2.3-BETA
[FABRIC MC1.19+] v5.2.3-BETA
[FORGE MC1.18.2] v5.2.3-BETA
[FABRIC MC1.18.2] v5.2.3-BETA
[NeoForge MC1.20.2] v5.2.2-BETA
[Forge MC1.20.2] v5.2.2-BETA
[Fabric MC1.20.2] v5.2.2-BETA
[Forge MC1.20+] v5.2.2-BETA
[Fabric MC1.20+] v5.2.2-BETA
[Forge MC1.19.3+] v5.2.2-BETA
[Fabric MC1.19.3+] v5.2.2-BETA
[Forge MC1.19+] v5.2.2-BETA
[Fabric MC1.19+] v5.2.2-BETA
[Forge MC1.18.2] v5.2.2-BETA
[Fabric MC1.18.2] v5.2.2-BETA
[Forge MC1.20.2] v5.2.1-BETA
[Fabric MC1.20.2] v5.2.1-BETA
[Forge MC1.20+] v5.2.1-BETA
[Fabric MC1.20+] v5.2.1-BETA
[Forge MC1.19.3+] v5.2.1-BETA
[Fabric MC1.19.3+] v5.2.1-BETA
[Forge MC1.19+] v5.2.1-BETA
[Fabric MC1.19+] v5.2.1-BETA
[Forge MC1.18.2] v5.2.1-BETA
[Fabric MC1.18.2] v5.2.1-BETA
[Forge MC1.20.2] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Fabric MC1.20.2] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Forge MC1.20+] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Fabric MC1.20+] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Forge MC1.19.3+] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Fabric MC1.19.3+] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Forge MC1.19+] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Fabric MC1.19+] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Forge MC1.18.2] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Fabric MC1.18.2] v5.2.0-BETA
- Added a toggle to merge CobbleGen to EMI's "World Interaction" category
- Added an option to disable CobbleGen tooltip when merged with EMI
- Added a toggle to remove overlapping recipes when merged with EMI
- Added an option to disable Recipe Viewer support entirely
- Added an option to enable experimental features
- [Experimental] Ability to customize obsidian generation
[Forge MC1.20.2] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.20.2] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.20+] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.20+] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.19.3+] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.19.3+] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.19+] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.19+] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.18.2] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.18.2] v5.1.1-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.20.2] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.20+] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.20+] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.19.3+] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.19.3+] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.19+] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.19+] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.18.2] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Fabric MC1.18.2] v5.1.0-BETA
**Note**: If you're experiencing crashes on versions prior to 1.20.2, I recommend reverting back to v5.0.x, 1.20.2 support is a bit messy at the moment.
[Forge MC1.20+] v5.0.3-BETA
[Fabric MC1.20+] v5.0.3-BETA
[Forge MC1.19.3+] v5.0.3-BETA
[Fabric MC1.19.3+] v5.0.3-BETA
[Forge MC1.19+] v5.0.3-BETA
[Fabric MC1.19+] v5.0.3-BETA
[Forge MC1.18.2] v5.0.3-BETA
[Fabric MC1.18.2] v5.0.3-BETA
[Forge MC1.20+] v5.0.2-BETA
[Fabric MC1.20+] v5.0.2-BETA
[Forge MC1.19.3+] v5.0.2-BETA
[Fabric MC1.19.3+] v5.0.2-BETA
[Forge MC1.19+] v5.0.2-BETA
[Fabric MC1.19+] v5.0.2-BETA
[Forge MC1.18.2] v5.0.2-BETA
[Fabric MC1.18.2] v5.0.2-BETA
[Forge MC1.20+] v5.0.1-BETA
[Fabric MC1.20+] v5.0.1-BETA
[Forge MC1.19.3+] v5.0.1-BETA
[Fabric MC1.19.3+] v5.0.1-BETA
[Forge MC1.19+] v5.0.1-BETA
[Fabric MC1.19+] v5.0.1-BETA
[Forge MC1.18.2] v5.0.1-BETA
[Fabric MC1.18.2] v5.0.1-BETA
[Forge MC1.20+] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Fabric MC1.20+] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Forge MC1.19.3+] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Fabric MC1.19.3+] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Forge MC1.19+] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Fabric MC1.19+] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Forge MC1.18.2] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Fabric MC1.18.2] v5.0.0-BETA
- [1.20.x] Fixed JEI integration
- [1.20.x] Fixed REI integration
- Fixed config not actually reloading when admin use the `/reload` command
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
- Added Create 0.5.1 support
[Forge MC1.20+] v5.0.3-ALPHA
[Fabric MC1.20+] v5.0.3-ALPHA
[Forge MC1.19.3+] v5.0.3-ALPHA
[Fabric MC1.19.3+] v5.0.3-ALPHA
[Forge MC1.19+] v5.0.3-ALPHA
[Fabric MC1.19+] v5.0.3-ALPHA
[Forge MC1.18.2] v5.0.3-ALPHA
[Fabric MC1.18.2] v5.0.3-ALPHA
[Forge MC1.20+] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Fabric MC1.20+] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Forge MC1.19.3+] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Fabric MC1.19.3+] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Forge MC1.19+] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Fabric MC1.19+] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Forge MC1.18.2] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Fabric MC1.18.2] v5.0.2-ALPHA
- Fixed `customGen` always returns default value unless explicitly emptied in the config (`"customGen" = {}`)
[Forge MC1.20+] v5.0.1-ALPHA
[Fabric MC1.20+] v5.0.1-ALPHA
[Forge MC1.19.3+] v5.0.1-ALPHA
[Fabric MC1.19.3+] v5.0.1-ALPHA
[Forge MC1.19+] v5.0.1-ALPHA
[Fabric MC1.19+] v5.0.1-ALPHA
[Forge MC1.18.2] v5.0.1-ALPHA
[Fabric MC1.18.2] v5.0.1-ALPHA
v5.0.0-ALPHA for MC1.20+
- Fix JEI integration in 1.20.x
v5.0.0-ALPHA for MC1.20+
- Fix JEI integration in 1.20.x
v5.0.0-ALPHA for MC1.19.3+
- Fix JEI integration in 1.20.x
v5.0.0-ALPHA for MC1.19.3+
- Fix JEI integration in 1.20.x
v5.0.0-ALPHA for MC1.19+
- Fix JEI integration in 1.20.x
v5.0.0-ALPHA for MC1.19+
- Fix JEI integration in 1.20.x
v5.0.0-ALPHA for MC1.18.2
- Fix JEI integration in 1.20.x
v5.0.0-ALPHA for MC1.18.2
- Fix JEI integration in 1.20.x
v4.0.4-BETA
Please report bugs to my discord server (https://discord.gg/sP9xRy6) if you don't have (and don't want to create) a GitHub account.
v4.0.3-BETA
v4.0.2-BETA
v4.0.1-BETA
- API breaking change to prevent future breaking changes
v4.0-BETA
- Improved Create mod compatibility
- Added Advanced Custom Generators (Custom Fluid Interaction)
- Added API for mod developers
- Recipe Viewers (REI/EMI/JEI) now shows server-side config when available
v4.0.5-ALPHA
- Rework how CobbleGen being loaded (at the same time fix Create integration)
v4.0.4-ALPHA
- Fix Create mod integration (again!)
v4.0.3-ALPHA
v4.0.2-ALPHA
v4.0.1-ALPHA
- Fixed Lava keeps turning into Limestone when Create mod is installed
v4.0-ALPHA
- Advanced Custom Generator
- Fluid Interaction API
v3.2.1-BETA
v3.2
- Fix Create Pipe support
v3.1
- Create Pipe support
v3.0
- Merged 1.18+, 1.19.3, and 1.19.4 into a single project
v2.2 for 1.18.2-1.19.2
v2.2 for 1.19.3+
v2.1 for 1.19.3+
v2.1 for 1.18.2+ and 1.19-1.19.2
v2.0
- Migrated config from OmegaConfig to Jankson (Should make configuration slightly easier)
- Fabric API is no longer needed
- Added support for tags (e.g. `#c:ores`)
- You can now reload the config without restarting your game using `/reload` command
v1.11 (mc1.19)
v1.11 (mc1.18)
v1.10 (mc1.18)
v1.10 (mc1.19)
v1.9 (mc1.19)
- Added minY and maxY option
v1.9 (mc1.18)
- Added minY and maxY option
v1.8
v1.7
v1.6
v1.5
## Technical
* Merged getting replacement block into 1 function
* Separated Basalt and Cobble mixin
v1.4
* Use classes instead of nested Map
收录