- Added a
jei_only
field- If true the transformation will only show on JEI and not happen in the world
Useful if the transformation is already added by other mods and you want to add the mixin to JEI - Vanilla transformations are no longer hardcoded but included in the mod's data pack
- If true the transformation will only show on JEI and not happen in the world
- Renamed result type
blocks
toblock
- For a single block the field is now
block
instead ofblocks
- For a single block the field is now
- Fixed crash with non
blocks
results
- Requires InsaneLib 1.15.0
- Changed
"result": "block"
to"result": "blocks"
block
field has changed toblocks
. Like before can be used as string specifying a block, or can be used as a list with weighted entries
This example makes the result have 50% chance to give stone and 50% to give cobblestone
{ "result": "blocks", "blocks": [ { "block": "minecraft:stone", "weight": 1 }, { "block": "minecraft:cobblestone", "weight": 1 } ] }
- Fixed possible loop when transforming a block into the same one
- Rewrote whole serialization of the JSON (could break basically)
- Update to MC 1.20.1
- Now compatible with InsaneLib 1.12.0
- MC 1.20