Skip to content

Commit

Permalink
this might fix aluminium smelting in furnace from some mod
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoriusT committed Sep 28, 2024
1 parent 109d733 commit 89ab918
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Nothing (I tend to only add finished Stuff to the Changelog).
[FIXED] Some Bug with Bukkit/Cauldron/etc. where things like Mini Portals and Ender Garbage Bins did not work correctly because of certain Events being thrown with weird Paths, triggering "loaded a different Save File" detection, which for Servers should flat out not be possible in the first place.
[FIXED] Rivers, Lakes, Oceans and Beaches do no longer dry placed Grass Bales.
[FIXED] Air vents were collecting Air even when submerged in Liquids or other Gasses.
[FIXED] Somethign that made Mass Storages jam somehow, I think. I dont know how to repliciate it, so I dont know if it's fixed.
[FIXED] Something that made Mass Storages jam somehow, I think. I dont know how to replicate it, so I dont know if it's fixed.
[FIXED] Potion Fluids now use the Potion's getLiquidColor() instead of a hardcoded Texture.
[CHANGED] Platinum Group Metals, their Sludge and Rare Earth now have better Thaumcraft Aspects.
[CHANGED] Roasters of higher Tiers no longer have overclocking penalty.
Expand Down
7 changes: 5 additions & 2 deletions src/main/java/gregtech/loaders/c/Loader_Recipes_Other.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2023 GregTech-6 Team
* Copyright (c) 2024 GregTech-6 Team
*
* This file is part of GregTech.
*
Expand Down Expand Up @@ -161,9 +161,12 @@ public class Loader_Recipes_Other implements Runnable {
addListener(rockGt.dat(MT.Netherrack), new IOreDictListenerEvent() {@Override public void onOreRegistration(OreDictRegistrationContainer aEvent) {RM.add_smelting(aEvent.mStack, rockGt.mat(MT.NetherBrick, 1), F, F, T);}});


addListener(new Object[] {OD.itemRubber, "crushedDraconium", "gemHexorium", "ingotIron", "oreCoal", "oreIron", "oreHematite", "oreMagnetite", "oreBogIron", "oreBrownLimonite", "oreYellowLimonite", "oreSiderite", "oreTaconite", "oreGold", "oreRedstone", "oreLapis", "oreDiamond", "oreEmerald", "oreBauxite", "oreAluminium", "oreRawAluminium", "oreRutile", "oreTitanium", "oreTungsten", "oreSulfur", "oreSaltpeter", "oreNiter", "oreNitre"}, new IOreDictListenerEvent() {@Override public void onOreRegistration(OreDictRegistrationContainer aEvent) {
addListener(new Object[] {OD.itemRubber, "crushedDraconium", "gemHexorium", "ingotIron", "oreCoal", "oreIron", "oreHematite", "oreMagnetite", "oreBogIron", "oreBrownLimonite", "oreYellowLimonite", "oreSiderite", "oreTaconite", "oreGold", "oreRedstone", "oreLapis", "oreDiamond", "oreEmerald", "oreRutile", "oreTitanium", "oreTungsten", "oreSulfur", "oreSaltpeter", "oreNiter", "oreNitre"}, new IOreDictListenerEvent() {@Override public void onOreRegistration(OreDictRegistrationContainer aEvent) {
RM.rem_smelting(aEvent.mStack);
}});
addListener(new Object[] {"oreBauxite", "oreRawBauxite", "oreAluminium", "oreRawAluminium"}, new IOreDictListenerEvent() {@Override public void onOreRegistration(OreDictRegistrationContainer aEvent) {
RM.add_smelting(aEvent.mStack, OP.ingot.mat(MT.Al2O3, 1), 1, T, F, T);
}});
addListener(OD.itemResin, new IOreDictListenerEvent() {@Override public void onOreRegistration(OreDictRegistrationContainer aEvent) {
RM.rem_smelting(aEvent.mStack);
if (MD.TiC.owns(aEvent.mStack)) return;
Expand Down

0 comments on commit 89ab918

Please sign in to comment.