Locking recipes to only accept certain pedestal variants
Th3OneAndOnly opened this issue ยท 4 comments
I do not see any use for the all the pedestal types. Perhaps we could lock recipes to to pedestals. Maybe the function could be:
mods.pedestalcrafting.Pedestal.addRecipe(["wood", "quartz", "emerald"], <ebwizardry:magic_wand>, 200, <roots:staff>, [
<ebwizardry:crystal_flower>,
<ebwizardry:magic_crystal>,
<ore:ingotGold>,
<ore:nuggetIron>
]);
// mods.pedestalcrafting.Pedestal.addRecipe(allowedPedestals[], output, ticks, coreItem, inputItems[]);
This is also assuming that the pedestal core and the pedestals around it are the same type. If not, it should not work. You should also keep the old function that is universal.
I could see this being useful in simulating pedestal tiers - should you adjust the crafting recipes accordingly.
For automation purposes, maybe it could interpret an empty list as a request to work for every tier, so we can make loops easier.