mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 11:15:23 -05:00
fix Mekanism recipe unifier keys
This commit is contained in:
parent
590407896a
commit
91dc056d15
2 changed files with 7 additions and 6 deletions
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning].
|
|||
|
||||
- fixed recipe viewer integration endpoints for Fabric
|
||||
- fixed unnecessary memory usage for debug handler
|
||||
- fixed Mekanism recipe unifier using wrong recipe keys
|
||||
|
||||
## [1.1.0] - 2024-09-27
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ import com.almostreliable.unified.api.unification.recipe.UnificationHelper;
|
|||
|
||||
public class MekanismRecipeUnifier implements RecipeUnifier {
|
||||
|
||||
private static final String MAIN_INPUT = "mainInput";
|
||||
private static final String ITEM_INPUT = "itemInput";
|
||||
private static final String EXTRA_INPUT = "extraInput";
|
||||
private static final String MAIN_OUTPUT = "mainOutput";
|
||||
private static final String ITEM_OUTPUT = "itemOutput";
|
||||
private static final String SECONDARY_OUTPUT = "secondaryOutput";
|
||||
private static final String MAIN_INPUT = "main_input";
|
||||
private static final String ITEM_INPUT = "item_input";
|
||||
private static final String EXTRA_INPUT = "extra_input";
|
||||
private static final String MAIN_OUTPUT = "main_output";
|
||||
private static final String ITEM_OUTPUT = "item_output";
|
||||
private static final String SECONDARY_OUTPUT = "secondary_output";
|
||||
|
||||
@Override
|
||||
public void unify(UnificationHelper helper, RecipeJson recipe) {
|
||||
|
|
Loading…
Reference in a new issue