JEI Metals issues.
Claycorp opened this issue ยท 2 comments
- Currently Casting is missing from all the JEI metal recipes.
- Melting recipes should be using the fluids instead of cast ingots.
- Alloys are only looking at ingots and ores not nuggets.
- Unmounted recipes should should show one per metal
- Metal heating should be search able by input and output.
Some info about JEI implementations:
- For molds, we can consider adding an
ISubtypeInterpreter
to have each mold/metal combination. - For unmold recipes, see
IModRegistry#handleRecipes
, which we can register a custom recipe wrapper and handler for unmold recipes. This should allow us to show the actual possible metal inputs + outputs of unmold recipes.
For alloy recipe inputs there are two main options:
- Use the fluid as an ingredient only, or
- Show every possible item that can be melted into that fluid (cycling)
Metal heating recipes should be more like the "information" tab, where instead of registering a "input -> output" recipe, they simply show information about item, melting temperature, and result metal.
Closed via bd40578