Fix Compressed Aluminium issues. Making of Compressed plates and use in heavy duty alloy ingots.

This commit is contained in:
Blood-Asp 2016-10-18 18:49:48 +02:00
parent 7cec5fae5f
commit 4384688c07

View file

@ -880,6 +880,10 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler {
GT_OreDictUnificator.registerOre(OrePrefixes.ingot, Materials.Knightmetal, aEvent.Ore);
return;
}
else if (aEvent.Name.equals("compressedAluminum")) {
GT_OreDictUnificator.registerOre(OrePrefixes.compressed, Materials.Aluminium, aEvent.Ore);
return;
}
else if (aEvent.Name.contains(" ")) {
GT_Log.ore.println(tModToName + " is getting re-registered because the OreDict Name containing invalid spaces.");
GT_OreDictUnificator.registerOre(aEvent.Name.replaceAll(" ", ""), GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));