[1.12.2] Oredict compat for composters
Sunconure11 opened this issue ยท 10 comments
Can more oredict be compatible or configured (more expected)? At present, it is far from enough. For example, Rustic and Cuisine crops are not accepted.
I don't have default values for modded stuff in the composter but I'm open to suggestions
You can also write a simple crafttweaker setup for looping through an oredict and adding to the composter like that
for item in <ore:seeds>.items {
Composter...(item);
}
Well, just looked at the Composter... turns out I added OreDict compat at some point for the addValidItem
function. If I should include it on any other function let me know
Honestly, most, if not all of the mod's functions could go with it in some degree.
Certain functions (like the bee pollination targets using IBlockState) don't work with an oredictionary approach. I was hoping your response would mention a few functions in particular.