Modern Industrialization

Modern Industrialization

4M Downloads

Unable to mix stainless steel dust. Always results in Invar dust.

jbowman023 opened this issue ยท 2 comments

commented

public static void init(MIRuntimeResourcePack pack) {
new AlloyBuilder("invar").addIngredient("iron", 2).addIngredient("nickel", 1).Build(pack);
new AlloyBuilder("stainless_steel").addIngredient("iron", 6).addIngredient("chrome", 1).addIngredient("nickel", 1)
.addIngredient("manganese", 1).Build(pack);
}

as you can see above, the mixer will always see "invar" first and mix that and will never result in "stainless_steel".

commented

It's going to craft invar anyway if chrome or manganese is missing. The proper solution is to lock the outputs of your mixer to stainless steel dust.

commented

AHH thank you! Locking the output worked!