rewrite the ore processing to be even less code, buff compatability for agricultural automation
This commit is contained in:
@ -33,4 +33,22 @@ ServerEvents.recipes(event => {
|
||||
'#forge:tomato_sauces'
|
||||
);
|
||||
});
|
||||
|
||||
// There is a recipe that uses the skillet, but very different ingredients
|
||||
event.remove({id: 'croptopia:cheeseburger'});
|
||||
|
||||
// Allow the apple pie to be automated in create, and use other eggs
|
||||
event.replaceInput({output: 'croptopia:apple_pie'},
|
||||
'minecraft:egg',
|
||||
'#forge:eggs'
|
||||
);
|
||||
event.recipes.create.mixing(
|
||||
'croptopia:apple_pie', [
|
||||
'minecraft:apple',
|
||||
'minecraft:sugar',
|
||||
'#forge:eggs',
|
||||
'#forge:flour',
|
||||
'#forge:dough'
|
||||
]
|
||||
).heated();
|
||||
});
|
Reference in New Issue
Block a user