Geolosys

Geolosys

5M Downloads

Auto-melting Compatibility

Pentalf opened this issue ยท 8 comments

commented

Is this mod compatible with the auto-melting modifier of tools?
I have Tinker's Construct 1.12.2

  • Geolosys 1.9.3
  • Minecraft Forge: 14.23.4.2707
  • JourneyMap 1.12.2-5.5.2
  • ImmersiveEngineering : -0.12-82

I want take iron ingots from Hematite, etc...

commented

and... is this problem can be solved? disable betterwithmods or...?
PS thank you

commented

I mean yeah you can disable BetterWithMods but that's the entire basis of SevTech Ages.

I don't think this is a problem that can be solved without adding a config option (unlikely as this is default behavior for BetterWithMods).

commented

Yes, it is!

commented

and how? its not working, a have pick with auto-melting mod, and when i trying mine hematit, i am gaining hematit, not iron ingot...

commented

Depends on two things:

  1. That you've got smelting of clusters enabled (it's a config option)
  2. That whatever mod is doing the auto-smelting is smelting the dropped item, not the block broken; that is to say if you're breaking cobblestone, it doesn't drop the result of smelting smooth stone but the result of smelting cobblestone - the item it drops.

I've tested this before with Tinkers and it worked for me, if it doesn't anymore I'll have to test and see what's up.

commented

but in the same time when i mining rock, i am gaining rock, not cobblestones, so auto-melting is working with vanilla rocks...

commented

so after enabling smelting of clusters and restarting game, i am gaining iron bits (1/9 iron ingot)...
Its default SevTech Ages mod pack

commented

That's because BetterWithMods is enabled.

boolean bwm = Loader.isModLoaded("betterwithmods");
smeltSafely(new ItemStack(CLUSTER, 1, 0), bwm ? "nuggetIron" : "ingotIron");
smeltSafely(new ItemStack(CLUSTER, 1, 1), bwm ? "nuggetGold" : "ingotGold");
smeltSafely(new ItemStack(CLUSTER, 1, 2), bwm ? "nuggetCopper" : "ingotCopper");
smeltSafely(new ItemStack(CLUSTER, 1, 3), bwm ? "nuggetTin" : "ingotTin");
smeltSafely(new ItemStack(CLUSTER, 1, 4), bwm ? "nuggetSilver" : "ingotSilver");
smeltSafely(new ItemStack(CLUSTER, 1, 5), bwm ? "nuggetLead" : "ingotLead");
smeltSafely(new ItemStack(CLUSTER, 1, 6), bwm ? "nuggetAluminum" : "ingotAluminum");
smeltSafely(new ItemStack(CLUSTER, 1, 7), bwm ? "nuggetNickel" : "ingotNickel");
smeltSafely(new ItemStack(CLUSTER, 1, 8), bwm ? "nuggetPlatinum" : "ingotPlatinum");
smeltSafely(new ItemStack(CLUSTER, 1, 10), bwm ? "nuggetZinc" : "ingotZinc");
smeltSafely(new ItemStack(CLUSTER, 1, 11), bwm ? "nuggetYellorium" : "ingotYellorium");
smeltSafely(new ItemStack(CLUSTER, 1, 12), bwm ? "nuggetOsmium" : "ingotOsmium");

It's not a config option, if smelting in the furnace is enabled and betterwithmods is enabled then you'll get nuggets only.