I'm tryna make a custom recipe type but I can't even get past the first step.
So I've got a file layed out like this:
public class CustomRecipe implements Recipe<SimpleInventory>{
//(inherited methods and stuff)
}
but I'm getting the error Bound mismatch: The type SimpleInventory is not a valid substitute for the bounded parameter <T extends RecipeInput> of the type Recipe<T> on line 11 (over Recipe<SimpleInventory>).
I see that SimpleInventory won't go in Recipe<T> and I see that it is supposed to be a RecipeInput but how would I get that to link to an Inventory.
To be honest, a link to an updated tutorial would be the best but the most recent I can find is for 1.20.2, right before they changed a lot with recipes.