Skip to content

Commit

Permalink
update coffee ingredient recipe keys
Browse files Browse the repository at this point in the history
  • Loading branch information
rlnt committed Oct 31, 2024
1 parent 6ca8b8f commit 55114b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
## Unreleased

- switched to the official maven artifacts
- updated coffee ingredient recipe keys

## [0.2.0] - 2024-10-24

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ public interface CoffeeIngredientRecipeSchema {
.key("ingredient", ComponentRole.INPUT)
.noFunctions();
RecipeKey<Integer> MAX_AMPLIFIER = NumberComponent.INT
.key("maxAmplifier", ComponentRole.OTHER)
.key("max_amplifier", ComponentRole.OTHER)
.functionNames(List.of("maxAmplifier"))
.optional(1)
.alwaysWrite();
RecipeKey<String> EXTRA_TEXT = StringComponent.ANY
.key("extraText", ComponentRole.OTHER)
.key("extra_text", ComponentRole.OTHER)
.functionNames(List.of("extraText"))
.optional("")
.allowEmpty();

Expand Down

0 comments on commit 55114b4

Please sign in to comment.