It's replacing the inputs for both Blocks of Raw Uranium and crafting Uranium Shards, even though they should be blacklisted.
Anyone know why it's not working like i want it too?
e.replaceInput(
{ input: "alexscaves:uranium", not: {id :"alexscaves:block_of_uranium", id: "alexscaves:uranium_shard_from_uranium", id: "biggerreactors:crafting/raw_uranium_block"} },
"alexscaves:uranium",
"#forge:ingots/uranium"
)
// Tried making it an array and that didn't work either
e.replaceInput(
{ input: "alexscaves:uranium", not: {id :"alexscaves:block_of_uranium", id: "alexscaves:uranium_shard_from_uranium", id: "biggerreactors:crafting/raw_uranium_block"} },
["alexscaves:uranium", "#forge:raw_materials/uranium"],
"#forge:ingots/uranium"
)