New Features
Cauldron Sneak Interaction
This alternative interaction allows players to open the CustomCrafting GUI by sneaking and right-clicking.
Code (YAML):
workstation:
cauldron:
interaction
: NORMAL
# or SNEAKING
Block Entity Merge Adapter
This adapter makes it possible to copy the Block Entity State that is currently bound to an item to the result.
Useful for upgrading tile entities like Shulker Boxes and preserving the contents.
This is adapter does not have any additional properties, all that is required is the key property.
Code (Text):
{
key : "customcrafting:block_entity"
}
Find more information about targets
here on the wiki.
Compass Merge Adapter
This adapter makes it possible to merge the location and track property of an ingredient compass to the result, and to override them with custom values.
The values are all managed via ValueProviders and BoolOperators making it possible to use values from PAPI, select values based on boolean conditions, etc.
Code (Text):
{
key : "customcrafting:compass",
overrideLocation: true,
location : {
worldName : "world",
x : 900,
y : 79,
z : -209
},
lodestoneTracked : false,
overrideLodestoneTracked : true
}
Find more information about targets
here on the wiki.
Changelog
- #225 Added Cauldron Sneak Right-Click Interaction option
- #216 Added Block Entity Tag Merge Adapter
- #217 Added Compass Merge Adapter
- #215 Fixed Item Input Slots in Elite Crafting Table
- #219 Recipe Groups are IDs and only used internally
- #220 Load Legacy Recipes Properly
Full Changelog:
v4.16.5.1...v4.16.6.0