Making a custom recipe¶
To make a recipe that works with multiple outputs, you need a class implementing Recipe
It would look something like this:
public class ExampleRecipe implements Recipe<SimpleInventory>, Output4Recipe<SimpleInventory> {
// [Methods]
}
For every amount of output slots, it works a little bit different, documentation for those can be found below: