This is another pretty lengthy update, so read carefully!
CHANGE LOG:
ADDED
➔ Brewing recipes (alias Brewer).
Code (Text):
Brewing:
Enabled: true
Exact-Choice: true
Identifier: BREWING_TEST
Converter: BREWING
Permission: crecipe.recipe.brewingtest
FuelSet: 20
FuelCharge: 5
Result:
Item: POTION
Name: Potion of Strength
Color: ORANGE
Effects:
- Type: STRENGTH
Duration: 90
Amplifier: 2
- Type: SPEED
Duration: 45
Amplifier: 1
UseVanillaType: false
Amount: 1
Lore: []
Effects: []
Enchantments: []
Requires-Items: false
Required-Item: []
ItemCrafting:
- ABX
- XXX
- XXX
Ingredients:
// first slot sets the fuel
A:
Material: EMERALD
Name: none
Custom-Model-Data: none
Amount: 1
// second slot sets the ingredient
B:
Material: COAL
Identifier: none
Name: none
Custom-Model-Data: none
Amount: 1
➔ Material choice
Define different material types for one recipe. Reflects in the recipe book.
Code (Text):
A:
Materials:
- BIRCH_WOOD
- OAK_WOOD
Identifier: none
Amount: 2
Name: none
Custom-Model-Data: none
➔ 'Use-Conditions' boolean for recipe conditions. Enable for conditions to work.
➔ Shaped recipes can be shifted now. They must retain their shape (like vanilla behavior).
➔ Potions can be used as standalone 'Items' now and as recipe results.
➔ Potions can be un/serialized within the creation menu now.
➔ 'Group' for Crafting & Stonecutter recipes.
Recipes that have the same Group set in the config will show together in the vanilla recipe book.
➔ '/cr remove' command, which I must have forgotton.
➔ The ability to have multiple SAME ingredients require different amounts (ex: SLIME, 32 & SLIME, 64).
Code (Text):
A:
Material: SLIME_BALL
Identifier: ENCHANTED_SLIME_BALL
Amount: 64
Name: Enchanted Slimeball
Custom-Model-Data: none
B:
Material: SLIME_BALL
Identifier: ENCHANTED_SLIME_BALL
Amount: 32
Name: Enchanted Slimeball
Custom-Model-Data: none
➔ Containers (bottles, buckets, etc) now listen to isLeftover, and are removed if not listed as being leftover.
➔ 'ITEM_NAME' support for 1.20.5+. ITEM_NAME takes precedence over CUSTOM_NAME (no more italic names).
➔ Updated HavenBags API to allow for sized bags as ingredients.
➔ JavaDoc notes to the wiki page.
➔ New buttons for Cook-Time, Experience, Repair-Cost, Group, etc.
➔ Added 'items' as cr sub-command.
➔ Added '/recipes' as an alias for the recipe booklet
This can be disabled by setting in the config.yml
'Recipes-Alias: false'
FIXED
➔ Commands only running once while shift-crafting.
➔ 'Custom-Tags' feature now works properly for basic tags.
➔ Revised and/or added 'Ignore-X' for other recipe types.
➔ Checks now compare against tags before stacks, in case the stack is modified by a player.
➔ Issue with blacklisting recipes. Sometimes key#fromString would fail, causing the recipe to not be disabled.
➔ Disabled recipes showing in the recipe book.
➔ ExecutableItems no longer require that PreventCrafting is disabled for the recipe to work correctly.
➔ Revised code to have sub-classes based on the type of recipe.
➔ Not being able to access the create menu for recipe types that you had none of in the GUI.
➔ NoClassDefFound error originating from ExtractBase64Url (Player Head issue).
➔ Deleting recipes in the GUI not fully removing the recipe from the server.
➔ PrepareAnvilEvent issue on MC 1.8.
➔ Permission: 'none' now correctly sets the permission to null.
➔ Issue with 'Q' dropping recipe results while crafting.
➔ 'Ghost Crafts' from attempting to craft a recipe with your cursor full.
➔ Changed recipe return list to return keys rather than names.
➔ The GUI now correctly returns to the recipe type sub-menu rather than the main menu.
➔ The GUI now saves your 'main' recipe and allows you to diverge into other recipes within a main one.
➔ The crafter block now denies crafting of recipes that have commands associated with them.
The wiki has been updated with important information.
If you have questions regarding any of these changes, please refer to the wiki page for more information. You can also join our discord server for extra support.
Custom Recipes Wiki Page
Report any issues and suggestions are always welcome
