You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 2, 2023. It is now read-only.
Why do you register smelting recipes at all?
Any mod with corresponding material ingots or whatever will bill happy with ores as oreMaterial oredict entry for its own recipes ingredients.
Now you need to fix smelting of 4space ingredient into other 4spece ingredient and stop this output to the ore dictionary entries items. You have to create a new IItemStack instance for each output.
Example but tthis is everywhere the same misbehaviour:
https://github.com/4Space/4Space-1.7/blob/master/src/main/java/mattparks/mods/space/io/util/RecipeManagerIo.java#L19-L21
Why do you register smelting recipes at all?
Any mod with corresponding material ingots or whatever will bill happy with ores as oreMaterial oredict entry for its own recipes ingredients.
Now you need to fix smelting of 4space ingredient into other 4spece ingredient and stop this output to the ore dictionary entries items. You have to create a new IItemStack instance for each output.